Files
DayZ-Epoch/SQF/dayz_code/system/watermark.sqf
ebaydayz edf9b71e12 Update description.ext to 1861 format
Tested with current 106 files without issue.
2016-02-12 17:41:23 -05:00

8 lines
341 B
Plaintext

// Logo watermark: adding a logo in the bottom left corner of the screen with the server name in it
[] spawn {
waitUntil {(!isNull Player) and (alive Player) and (player == player)};
waituntil {!(isNull (findDisplay 46))};
5 cutRsc ["wm_disp","PLAIN"];
((uiNamespace getVariable "wm_disp") displayCtrl 1) ctrlSetText dayZ_serverName;
};