2015-01-11 18:24:19 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
if(isServer) then {
|
2015-04-06 16:22:43 +00:00
|
|
|
[QGVAR(frag_eh), { _this call FUNC(frago); }] call ace_common_fnc_addEventHandler;
|
2015-01-11 18:24:19 +00:00
|
|
|
};
|
2015-03-22 04:22:16 +00:00
|
|
|
/*
|
2015-01-11 18:24:19 +00:00
|
|
|
GVAR(replacedBisArtyWrapper) = false;
|
|
|
|
[] spawn {
|
2015-04-06 16:22:43 +00:00
|
|
|
waitUntil {
|
|
|
|
if(!(isNil "BIS_ARTY_F_ShellFlight")) then {
|
|
|
|
ACE_WRAPPER_BIS_ARTY_F_ShellFlight = BIS_ARTY_F_ShellFlight;
|
|
|
|
BIS_ARTY_F_ShellFlight = FUNC(BIS_ARTY_WRAPPER);
|
|
|
|
GVAR(replacedBisArtyWrapper) = true;
|
|
|
|
};
|
|
|
|
sleep 4;
|
|
|
|
GVAR(replacedBisArtyWrapper)
|
|
|
|
};
|
2015-01-11 18:24:19 +00:00
|
|
|
};
|
2015-03-22 04:22:16 +00:00
|
|
|
*/
|