ACE3/addons/laser_selfdesignate/functions/fnc_laserHudDesignateOff.sqf

25 lines
598 B
Plaintext
Raw Normal View History

/*
* Author: jaynus
* Turns off passed laser self designation.
*
* Argument:
* 0: Shooter, player shooting the laser
* 1: LaserUUID, the UUID of the laser returned by EFUNC(laser,laserOn)
* 2: Local laser target, unused.
*
* Return value:
* true
*/
#include "script_component.hpp"
if( (count _this) > 2) then {
EXPLODE_3_PVT(_this,_shooter,_laserUuid, _localLaserTarget);
[_laserUuid] call EFUNC(laser,laserOff);
2015-04-12 18:14:12 +00:00
// @TODO: Nou gets to field all tickets about missing lasers.
//deleteVehicle _localLaserTarget;
};
2015-04-07 19:11:28 +00:00
GVAR(active) = false;
true