2015-08-15 16:43:13 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_START;
|
2016-02-22 14:20:36 +00:00
|
|
|
#include "XEH_PREP.hpp"
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_END;
|
2015-08-15 16:43:13 +00:00
|
|
|
|
2023-12-07 03:20:47 +00:00
|
|
|
#include "initSettings.inc.sqf"
|
2018-07-05 16:29:32 +00:00
|
|
|
|
2019-03-14 14:17:34 +00:00
|
|
|
DFUNC(rearm_statement) = { // moved from config because of build problems
|
|
|
|
TRACE_1("rearm_statement",_this);
|
|
|
|
{
|
|
|
|
if (_x isKindOf 'AllVehicles' && {!(_x isKindOf 'Man')}) then {
|
|
|
|
[objNull, _x] call FUNC(rearmEntireVehicleSuccess);
|
|
|
|
};
|
|
|
|
} forEach (curatorSelected select 0);
|
|
|
|
};
|
|
|
|
|
2015-08-15 16:43:13 +00:00
|
|
|
ADDON = true;
|