2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_index"];
|
|
|
|
_index = lbCurSel 6000;
|
|
|
|
|
|
|
|
if (_index == -1) exitWith {};
|
|
|
|
|
|
|
|
for "_i" from 0 to (count GVAR(ATragMX_currentGun)) - 1 do {
|
2015-04-07 20:44:26 +00:00
|
|
|
if ((GVAR(ATragMX_currentGun) select _i) > _index) then {
|
|
|
|
GVAR(ATragMX_currentGun) set [_i, (GVAR(ATragMX_currentGun) select _i) - 1];
|
|
|
|
};
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GVAR(ATragMX_gunList) set [_index, 0];
|
|
|
|
GVAR(ATragMX_gunList) = GVAR(ATragMX_gunList) - [0];
|
|
|
|
|
|
|
|
lbDelete [6000, _index];
|
|
|
|
|
2015-04-06 18:46:33 +00:00
|
|
|
profileNamespace setVariable ["ACE_ATragMX_gunList", GVAR(ATragMX_gunList)];
|