DMS_Exile/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIStatic.sqf
2015-09-09 21:05:46 -05:00

69 lines
1.5 KiB
Plaintext

/*
DMS_fnc_SpawnAIStatic
Created by eraser1
Influenced by WAI
Usage:
[
[ // Array of static gun positions
_pos1,
_pos2,
...
_pos3
],
_group, // Group to which the AI unit(s) belongs to
_class, // Class: "random","assault","MG","sniper" or "unarmed"
_difficulty, // Difficulty: "random","static","hardcore","difficult","moderate", or "easy"
_side // "bandit","hero", etc.
] call DMS_fnc_SpawnAIStatic;
Returns an array of static gun objects.
*/
_OK = params
[
["_positions",[],[[]]],
["_group",grpNull,[grpNull]],
["_class","random",[""]],
["_difficulty","static",[""]],
["_side","bandit",[""]]
];
if (!_OK) exitWith
{
diag_log format ["DMS ERROR :: Calling DMS_fnc_SpawnAIStatic with invalid parameters: %1",_this];
};
_guns = [];
{
_pos = _x;
_gun = createVehicle [(DMS_static_weapons call BIS_fnc_selectRandom), _pos, [], 0, "CAN_COLLIDE"];
_gun setDir (random 360);
_gun setPosATL _pos;
_gun addEventHandler ["GetOut",{(_this select 0) setDamage 1;}];
_gun lock 2;
_guns pushBack _gun;
_unit = [_group,_pos,_class,_difficulty,_side,"Static"] call DMS_fnc_SpawnAISoldier;
_unit moveingunner _gun;
reload _unit;
if (DMS_DEBUG) then
{
diag_log format ["DMS_DEBUG SpawnAIStatic :: Created unit %1 at %2 as static gunner in %3",_unit,_pos,_gun];
};
} forEach _positions;
if (DMS_DEBUG) then
{
diag_log format ["DMS_DEBUG SpawnAIStatic :: Created %1 static AI with parameters: %2",count _positions,_this];
};
_guns