ACE3/addons/javelin/functions/fnc_onOpticUnload.sqf

21 lines
645 B
Plaintext
Raw Normal View History

//#define DEBUG_MODE_FULL
#include "script_component.hpp"
TRACE_1("enter", _this);
2015-07-05 04:14:44 +00:00
private["_args", "_disableFireEH"];
2015-07-05 04:14:44 +00:00
// uiNameSpace setVariable ['ACE_RscOptics_javelin',nil];
2015-07-05 04:14:44 +00:00
if(GVAR(pfehID) != -1) then {
[GVAR(pfehID)] call CBA_fnc_removePerFrameHandler;
GVAR(pfehID) = -1;
};
_args = uiNamespace getVariable[QGVAR(arguments), nil ];
if(!isNil "_args") then {
_disableFireEH = _args select 6;
2015-04-15 17:11:13 +00:00
if(_disableFireEH > 0 && difficulty > 0) then {
[ACE_player, "DefaultAction", _disableFireEH] call EFUNC(common,removeActionEventHandler);
};
uiNameSpace setVariable [QGVAR(arguments),nil];
};