ACE3/addons/repair/functions/fnc_spawnObject.sqf
SilentSpike 108ff4f644 Replace ACE event system calls with CBA counterparts
Regex used:

\[(.+?),(.+?),(.+?)\]\s+call\s+E?FUNC\((common,)?(target|object)Event\)
[$1,$3,$2] call CBA_fnc_targetEvent

E?FUNC\((common,)?(server|global|local)Event\)
CBA_fnc_$2Event

E?FUNC\((common,)?(add|remove)EventHandler\)
CBA_fnc_$2EventHandler
2016-05-22 16:47:39 +01:00

35 lines
825 B
Plaintext

/*
* Author: commy2
* Spawns an object of specified string, at specified position with specified damage taken.
*
* Arguments:
* 0: Item classname <STRING>
* 1: Position ASL <ARRAY>
* 2: Damage <NUMBER>
*
* Return Value:
* The new object <OBJECT>
*
* Example:
* ["classname", [0, 0, 0], 1] call ace_repair_fnc_spawnObject
*
* Public: No
*/
#include "script_component.hpp"
params ["_item", "_position", ["_damage", 0]];
TRACE_3("params",_item,_position,_damage);
// randomized end position
_position = _position vectorAdd [1 - random 2, 1 - random 2, 0];
private _newObject = createVehicle [_item, _position, [], 0, "NONE"];
_newObject setPosASL _position;
_newObject setDamage _damage;
["fixCollision", _newObject] call CBA_fnc_localEvent;
["fixPosition", _newObject] call CBA_fnc_localEvent;
_newObject