ACE3/addons/weather/init3DEN.sqf
2024-06-11 08:00:50 -07:00

14 lines
556 B
Plaintext

// point of this file is to disable "auto-weather" by default
// we want this, because it breaks weather commands we use in this component
#include "script_component.hpp"
// cannot create checkboxes which have the default value "true"
// 3den uses inverted checkboxes instead, but those only change in appearence
// we have to auto set these settings manually - on mission creation
add3DENEventHandler ["OnMissionNew", {
set3DENMissionAttributes [
["Intel", "IntelWavesIsForced", true],
["Intel", "IntelWindIsForced", true]
];
}];