fnc_spawnDroidPFH.sqf 842 B

123456789101112131415161718192021222324
  1. #include "function_macros.hpp"
  2. params ["_args", "_handle"];
  3. _args params ["_target"];
  4. systemChat format["Evaluating PFH %1",_handle];
  5. if(isNil "_target") exitWith {
  6. systemChat format["Removing PFH %1 due to null target",_handle];
  7. };
  8. if(!isServer || ! alive _target) exitWith {
  9. systemChat format["Removing PFH %1",_handle];
  10. [_handle] call CBA_fnc_removePerFrameHandler;
  11. };
  12. _group = _target getVariable QGVAR(group);
  13. _aliveUnits = ({alive _x} count (units _group));
  14. systemChat format["%1 :: %2",_target,_aliveUnits];
  15. if(_aliveUnits < _target getVariable QGVAR(maxUnits)) exitWith
  16. {
  17. _selectedUnit = selectRandom (_target getVariable QGVAR(possibleUnits));
  18. systemChat format["%1 spawning in %2",_target,_selectedUnit];
  19. _group createUnit [_selectedUnit, position _target, [], 0, "NONE"];
  20. };
  21. systemChat format["%1 not spawning anything"];