1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Private ['_addin','_c','_currentUpgrades','_filler','_filter','_i','_listBox','_listNames','_u','_value'];
_listNames = _this select 0;
_filler = _this select 1;
_listBox = _this select 2;
_value = _this select 3;
_u = 0;
_i = 0;
_currentUpgrades = (sideJoinedText) Call GetSideUpgrades;
_filter = Format["WFBE_%1%2CURRENTFACTIONSELECTED",sideJoinedText,_filler] Call GetNamespace;
if (isNil '_filter') then {_filter = "nil"} else {
if (_filter == 0) then {
_filter = 'nil';
} else {
_filter = ((Format["WFBE_%1%2FACTIONS",sideJoinedText,_filler] Call GetNamespace) select _filter);
};
};
lnbClear _listBox;
{
_addin = true;
_c = _x Call GetNamespace;
if (_filter != "nil") then {
if ((_c select QUERYUNITFACTION) != _filter) then {_addin = false};
};
if ((_c select QUERYUNITUPGRADE) <= (_currentUpgrades select _value) && _addin) then {
lnbAddRow [_listBox,['$'+str (_c select QUERYUNITPRICE),(_c select QUERYUNITLABEL)]];
lnbSetData [_listBox,[_i,0],_filler];
lnbSetValue [_listBox,[_i,0],_u];
_i = _i + 1;
};
_u = _u + 1;
} forEach _listNames;
if (_i > 0) then {lnbSetCurSelRow [_listBox,0]} else {lnbSetCurSelRow [_listBox,-1]};
|