mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
448 B
Plaintext
26 lines
448 B
Plaintext
/*
|
|
* Author: VKing
|
|
* Spawns a flare on the ground for tripflare trigger
|
|
*
|
|
* Arguments:
|
|
* 0: Position <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [getPos groundFlare] call ace_explosives_fnc_spawnFlare
|
|
*
|
|
* Public: no
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_posX","_posY","_posZ"];
|
|
TRACE_3("Params",_posX,_posY,_posZ);
|
|
|
|
private _flare = "ACE_TripFlare_FlareEffect" createVehicle [_posX,_posY,_posZ];
|
|
|
|
TRACE_1("",_flare);
|
|
|
|
nil
|