ExAd/mpmissions/Exile.Altis/ExAdClient/XM8/Functions/fn_getAppCtrl.sqf
Bjanski e72a9bbba3 v0.7.7 Build 53
Introduced a new XM8 Apps
Introduced a new version of the VG App, compatible with the new system.
2016-07-03 20:11:58 +02:00

11 lines
316 B
Plaintext

params ["_display","_slide","_key","_map","_index",["_ctrl", controlNull]];
_map = call compile format["ExAd_XM8_MAP_%1",_slide];
_index = _map find _key;
if (_index != -1) then {
_idc = ((getNumber (missionConfigFile >> "CfgXM8" >> _slide >> "controlID")) + _index);
_ctrl = _display displayCtrl _idc;
};
_ctrl