private ["_messages","_timeout"]; waitUntil {uiSleep 1; !isNil ("Dayz_loginCompleted")}; _messages = [ ["DayZ Epoch", "Welcome "+(name player)], ["World", worldName], ["Teamspeak", "some TS info"], ["Website/Forums", "some website info"], ["Server Rules", "Duping, glitching or using any
exploit will result in a
permanent ban."], ["Server Rules", "No talking in side."], ["Server Rules", "Hackers will be banned permanently
Respect others"], ["News", "Some random new info!
Random news
"] ]; _timeout = 5; { private ["_title","_content","_titleText"]; uiSleep 2; _title = _x select 0; _content = _x select 1; _titleText = format[("%1
%2"), _title, _content]; [ _titleText, [safezoneX + safezoneW - 0.8,0.50], //DEFAULT: 0.5,0.35 [safezoneY + safezoneH - 0.8,0.7], //DEFAULT: 0.8,0.7 _timeout, 0.5 ] spawn BIS_fnc_dynamicText; uiSleep (_timeout * 1.1); } forEach _messages;