DayZ
Dabs Framework
Viser 31-40 af 57 forekomster
< 1  2  3  4  5  6 >
Opdatering: 22. juni 2023 kl. 20:58

[Added]
- GUID class
Generates random, non-clashing GUID's using the same format as Windows
- DateTime class
Implementation of DateTime. Has useful functions like formatting to ISO dates and math operations for TimeSpan
- TimeSpan class
A sub implementation of DateTime. Used to represent lengths of time
- EntityLink class
Useful networking class to allow for Entities to be directly synced to clients without the use of additional RPC's

- ScriptViewMenu::HidesParentMenu
- Fixed lengh parameter to Encoding.ToHex

Opdatering: 23. maj 2023 kl. 5:46

[Added]
- ScriptViewMenu type, uses UIManager and input management appropriately

[Fixed]
- ProfileSettings would not save string arrays
- NotifyPropertyChanged would be triggered multiple times for events

[Removed]
- Errors when deletions failed
- ScritpView::SetParent

Opdatering: 16. apr. 2023 kl. 18:42

- Sorry for the double update. Addon builder is trash

Opdatering: 16. apr. 2023 kl. 13:54

- Added UIScriptedMenu compat to ScriptView
- Cleaned up some code to remove old standard

Opdatering: 14. feb. 2023 kl. 5:49

- 1.20 Compatibility

Opdatering: 5. aug. 2022 kl. 10:07

Dabs Framework v1.1.3
[Added]
- MissionServer::OnPlayerJoined, a strange function that should definitely be in vanilla

[Fixed]
- Several bugfixes relating to 1.1.2 - including some settings in prefabs not working properly
- Event cooldowns not working properly
- Null ptr error on server shutdown

Opdatering: 18. juli 2022 kl. 11:11

Dabs Framework v1.1.2
[Fixed]
- Events not being called (absolutely ZERO idea why this wasnt working)

[Removed]
- UseMouse, UseKeyboard and UseGamepad functions. They are not worth it, add your own implementation (its easy)

Opdatering: 17. juli 2022 kl. 18:57

Dabs Framework v1.1.1

[Added]
- UseMouse, UseKeyboard and UseGamepad functions to ScriptView
- Added a return statement from ProfileSettings::Save and ProfileSettings::Load

[Changed]
- Moved the Event Manager to 3_Game
The Event Manager will now also be started on game launch, instead of mission launch.
The new recommended way to obtain the instance is with GetDayZGame().GetEventManager();
- EventManager::StartEvent now returns the instance of the event
- EventBase::EventActivateCondition is now ignored when force is enabled

[Fixed]
- Fixed a minidump being created on game shutdown
- Fixed several crash logs on game hard close
- Fixed black section in the background of the color picker
- Fixed events not cleaning themselves up properly

Opdatering: 10. juni 2022 kl. 14:39

Update v1.1.0

[Added]
New Event Functionality:
Parallel Events - you can now run as many of the same event type as you want, each will have their own unique ID, please note that by default this is OFF and you can override MaxEventCount() to modify this
Added Startup Params to EventBase::OnStart, these are passed from EventManager::StartEvent
Added EventManager::GetEvents
Added EventManager::GetEventsInherited
Added EventManagerLog, using the new DF Logging system
Moved all WeatherEvent code to SwitchPhase so super is no longer required in the phases
Depriciated EventBase::GetEventPosition (legacy code from the original EVR Storm)
EventBase.m_EventManager will now be valid on client and server
WeatherEvent::RequestWeatherChange now returns a boolean on whether or not a change was succesful
EventManager::StartEvent now returns a bool on whether or not the event was succesfully started
EventManager::CancelEvent now returns a bool on whether or not the event was succesfully cancelled
Added EventBase::SyncToClient for easy quick syncing of event information
EventManager::DumpInfo now no longer requires events to be registered

New Logger Functionality:
Added DuplicateToConsole
Added DuplicateToRPT

[Fixed]
- Logging not occuring due to bad mask

[Removed]
- Removed unneeded inputs

Opdatering: 6. maj 2022 kl. 18:56

Dabs Framework v1.0.8

[Added]
- Server Side Debug Commands (Debug.DrawSphere, etc will work)
- LoggerBase and LoggerManager class types, abstractable loggers that will allow for easy server organization