Update all cutText to dayz_rollingMessages

This commit is contained in:
ebaydayz
2016-04-16 15:47:49 -04:00
parent 993ce14da6
commit 5157228e67
137 changed files with 604 additions and 621 deletions

View File

@@ -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;
};