mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
15 lines
430 B
Plaintext
15 lines
430 B
Plaintext
private ["_traderName","_showText"];
|
|
_traderName = _this select 0;
|
|
_showText = _this select 1;
|
|
|
|
if (_showText) then {
|
|
cutText [format [localize "STR_EPOCH_TRADER_ENTER", _traderName], "PLAIN DOWN"];
|
|
};
|
|
|
|
if (DZE_ForceNameTagsInTrader) then {
|
|
player setVariable["DZE_display_name_tmp", (player getVariable "DZE_display_name")];
|
|
player setVariable["DZE_display_name", true, true];
|
|
};
|
|
|
|
canbuild = false;
|
|
inTraderCity = _traderName; |