ACE3/addons/switchunits/XEH_postInit.sqf

30 lines
547 B
Plaintext
Raw Normal View History

/*
* Author: bux578
* Initializes the SwitchUnits pbo.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* None
*
* Public: No
*/
#include "script_component.hpp"
2015-06-02 17:06:41 +00:00
2015-02-10 17:57:23 +00:00
if (missionNamespace getVariable [QGVAR(EnableSwitchUnits), false]) then {
[player] call FUNC(startSwitchUnits);
} else {
["SettingChanged", {
PARAMS_2(_name,_value);
if ((_name == QGVAR(EnableSwitchUnits)) && {_value}) then {
[player] call FUNC(startSwitchUnits);
};
2015-06-02 17:06:41 +00:00
}] call EFUNC(common,addEventhandler);
};