/* * Author: commy2 * Spawns an object of specified string, at specified position with specified damage taken. * * Arguments: * 0: Item classname * 1: Position ASL * 2: Damage * * Return Value: * The new 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; ["ace_fixCollision", _newObject] call CBA_fnc_localEvent; ["ace_fixPosition", _newObject] call CBA_fnc_localEvent; _newObject