ExAd/mpmissions/Exile.Altis/ExAdClient/XM8/Apps/Journal/onOpen.sqf
Bjanski 091c30afc4 v0.7.9
Added new App, Journal
2016-07-20 01:17:06 +02:00

14 lines
337 B
Plaintext

private["_display"];
_display = uiNameSpace getVariable ["RscExileXM8", displayNull];
_notes = profileNamespace getVariable ["ExAd_Journal_Notes",[]];
_listCtrl = [_display,"ExAd_Journal","listNotes"] call ExAd_fnc_getAppCtrl;
lbClear _listCtrl;
{
_index = _listCtrl lbAdd _x;
_listCtrl lbSetTooltip [_index, _x];
}forEach _notes;