17 lines
351 B
Plaintext
17 lines
351 B
Plaintext
if ( !hasInterface ) exitWith {};
|
|
|
|
if (!isServer) then {
|
|
["milsim_logText", {
|
|
params [["_strArray", [""], [[]]]];
|
|
{
|
|
diag_log text _x;
|
|
} forEach _strArray;
|
|
}] call CBA_fnc_addEventHandler;
|
|
};
|
|
|
|
// define milsim_resupply_crateDefinitions
|
|
call milsim_fnc_crateDefinitions;
|
|
|
|
["InitializePlayer", [player, true]] call BIS_fnc_dynamicGroups;
|
|
|
|
nil; |