Files
DayZ-Epoch/SQF/dayz_code/compile/player_markMap.sqf
2017-02-11 17:15:49 -05:00

10 lines
259 B
Plaintext

private ["_text","_textBox"];
disableSerialization;
_textBox = _this displayCtrl 101;
_text = ctrlText _textBox;
if (alive player) then {
_text = if (_text == "") then {name player} else {format["%1: %2",name player,_text]};
_textBox ctrlSetText _text;
};