summaryrefslogtreecommitdiffstats
path: root/Client/Functions/Client_UIFindLBValue.sqf
blob: ae06622e161ee6b1fcae7959aeaf2019d9f489ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Private ['_itemsCount','_listbox','_retVal','_value'];
_listbox = _this select 0;
_value = _this select 1;

_itemsCount = lbSize _listbox;

_retVal = -1;
for '_i' from 0 to _itemsCount-1 do {
	if (lbValue[_listbox, _i] == _value) exitWith {_retVal = _i};
};

_retVal