mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-21 10:56:29 +03:00
Update all cutText to dayz_rollingMessages
This commit is contained in:
@@ -18,8 +18,8 @@ _text = getText (_config >> "displayName");
|
||||
_hasitem = _item in magazines player;
|
||||
|
||||
//fail saves
|
||||
if (!_hasitem) exitWith { cutText [localize "str_missingAttachment", "PLAIN DOWN"]};
|
||||
if (_onLadder) exitWith { cutText [localize "str_player_21", "PLAIN DOWN"] };
|
||||
if (!_hasitem) exitWith { localize "str_missingAttachment" call dayz_rollingMessages;};
|
||||
if (_onLadder) exitWith { localize "str_player_21" call dayz_rollingMessages; };
|
||||
|
||||
if (_removeWeapon in (weapons player)) then {
|
||||
player removeMagazine _item;
|
||||
@@ -33,5 +33,5 @@ if (_removeWeapon in (weapons player)) then {
|
||||
} else {
|
||||
closedialog 0;
|
||||
uiSleep 0.2;
|
||||
cutText [format[ localize "str_missingweapon", _text, _removeWeapon] , "PLAIN DOWN"]
|
||||
format[ localize "str_missingweapon", _text, _removeWeapon] call dayz_rollingMessages;
|
||||
};
|
||||
Reference in New Issue
Block a user