Files
DayZ-Epoch/SQF/dayz_code/compile/trader_enter.sqf
2014-02-21 00:53:44 +01:00

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;