mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
24 lines
881 B
Plaintext
24 lines
881 B
Plaintext
_playerNuisance = missionNamespace getVariable [_playerNuisanceKey, _playerNuisanceDefault];
|
|
_playerSoiled = missionNamespace getVariable [_playerSoiledKey, _playerSoiledDefault];
|
|
_spawnChance = ((_playerNuisance + _playerSoiled)/2) max 1;
|
|
// add more antagonist spawn chances
|
|
if (random _antagonistRndChance < _spawnChance) then {
|
|
// selectRandomWeighted arma 1.76 or higher
|
|
(selectRandomWeighted _antagonistChances) call EPOCH_unitSpawnIncrease;
|
|
};
|
|
|
|
|
|
_spawnUnits = [];
|
|
{
|
|
if (_x > 0) then{
|
|
_spawnUnits pushBack(EPOCH_spawnIndex select _forEachIndex);
|
|
};
|
|
} forEach (missionNamespace getVariable [_playerSpawnArrayKey, _playerSpawnArrayDefault]);
|
|
|
|
diag_log format["DEBUG: _spawnUnits %1",_spawnUnits];
|
|
|
|
// test spawning one antagonist every 10 minutes select one unit at random to spawn
|
|
if !(_spawnUnits isEqualTo[]) then{
|
|
(selectRandom _spawnUnits) call EPOCH_unitSpawn;
|
|
};
|