ACE3/addons/laser/functions/fnc_drawVisibleLaserTargets.sqf

10 lines
277 B
Plaintext
Raw Normal View History

2016-05-30 16:37:03 +00:00
// This is a debug function for displaying visible lasers for ourselves
#include "script_component.hpp"
2016-08-22 19:06:52 +00:00
INFO("Laser Emitter Dump");
2016-05-30 16:37:03 +00:00
{
2016-08-22 19:06:52 +00:00
INFO_1(" %1", _x);
INFO_1(" %1",[ARR_2(GVAR(laserEmitters),_x)] call CBA_fnc_hashGet);
2016-07-30 15:16:29 +00:00
} forEach (GVAR(laserEmitters) select 1);