arma3_missions/helotraining_mp.Altis/init.sqf

21 lines
496 B
Plaintext

// Config constant globals
LZCOUNT = 86;
STARTPRIORITY = 1000;
EXLUDESPAWNLZS = [(missionNamespace getVariable "lz33")]; // Exclude the airport location near spawn marker
// Precompile code
execVM "precompile.sqf";
// We can't run this before
if (isServer) then
{
//Handle MP parameters
_handle = execVM "readparams.sqf";
waitUntil {isNull _handle};
[EXLUDESPAWNLZS] spawn taskSpawner;
};
// Flag init complete
missionInitComplete = true;
publicVariable "missionInitComplete";