ACE3/addons/laser/functions/fnc_laserOff.sqf

17 lines
273 B
Plaintext
Raw Normal View History

/*
* Author: Nou
* Turn a laser designator off.
*
* Arguments:
* 0: UUID (from laserOn) <string>
*
* Return value:
* None
*/
2016-05-03 00:32:44 +00:00
#include "script_component.hpp"
private ["_uuid"];
_uuid = _this select 0;
["laser_laserOff", [_uuid]] call EFUNC(common,globalEvent);