2015-01-14 04:15:58 +00:00
|
|
|
|
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
2015-02-15 14:55:00 +00:00
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
2015-01-14 04:15:58 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-25 03:59:20 +00:00
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
2015-02-15 14:55:00 +00:00
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
2015-01-25 03:59:20 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_FiredBIS_EventHandlers {
|
2015-01-14 04:15:58 +00:00
|
|
|
class CAManBase {
|
2015-02-15 14:48:40 +00:00
|
|
|
class ADDON {
|
2016-01-16 23:29:57 +00:00
|
|
|
clientFiredBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHBB);};);
|
2015-01-14 04:15:58 +00:00
|
|
|
};
|
2015-01-25 03:59:20 +00:00
|
|
|
};
|
2015-02-15 18:42:54 +00:00
|
|
|
|
|
|
|
class Tank {
|
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-02-15 18:42:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Car {
|
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-02-15 18:42:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Helicopter {
|
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-02-15 18:42:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Plane {
|
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-02-15 18:42:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Ship_F {
|
2015-02-15 14:48:40 +00:00
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-01-14 04:15:58 +00:00
|
|
|
};
|
|
|
|
};
|
2015-04-02 22:24:59 +00:00
|
|
|
class StaticWeapon {
|
2015-02-15 20:29:54 +00:00
|
|
|
class ADDON {
|
2015-08-30 05:38:17 +00:00
|
|
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
2015-02-15 20:29:54 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-14 04:15:58 +00:00
|
|
|
};
|