ACE3/addons/laser/functions/fnc_laserOff.sqf

17 lines
263 B
Plaintext
Raw Normal View History

/*
* Author: Nou
* Turn a laser designator off.
*
* Arguments:
* 0: UUID (from laserOn) <string>
*
2016-06-18 09:50:41 +00:00
* Return Value:
* None
*/
2016-05-03 00:32:44 +00:00
#include "script_component.hpp"
private ["_uuid"];
2016-05-30 16:37:03 +00:00
_uuid = _this select 0;
2016-06-09 12:24:45 +00:00
["ace_laserOff", [_uuid]] call CBA_fnc_globalEvent;