mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
372 B
Plaintext
23 lines
372 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Nou
|
|
* Turn a laser designator off.
|
|
*
|
|
* Arguments:
|
|
* 0: UUID (from laserOn) <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["yourLaserUID"] call ace_laser_fnc_laserOff;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_uuid"];
|
|
|
|
TRACE_1("Sending Global Laser Off Event",_uuid);
|
|
|
|
["ace_laserOff", [_uuid]] call CBA_fnc_globalEvent;
|