mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
347 B
Plaintext
14 lines
347 B
Plaintext
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_index"];
|
||
|
_index = 0 max (lbCurSel 6000);
|
||
|
|
||
|
GVAR(ATragMX_gunList) set [_index, +(GVAR(ATragMX_workingMemory) select GVAR(ATragMX_currentTarget))];
|
||
|
|
||
|
lbClear 6000;
|
||
|
{
|
||
|
lbAdd [6000, _x select 0];
|
||
|
} forEach GVAR(ATragMX_gunList);
|
||
|
|
||
|
profileNamespace setVariable ["GVAR(ATragMX_gunList)", GVAR(ATragMX_gunList)];
|