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

@@ -25,16 +25,16 @@ if ((_tape in magazines player) && (_handle in magazines player)) then {
player removeMagazine _tape;
player removeMagazine _handle;
player addWeapon _fixedItem;
cutText [format [localize "str_fixToolSuccess", _dName], "PLAIN DOWN"];
format[localize "str_fixToolSuccess", _dName] call dayz_rollingMessages;
} else { //If the player doesn't have the mats.
if (!(_tape in magazines player)) then {
if (!(_handle in magazines player)) then {
cutText [localize "str_fixToolFail", "PLAIN DOWN"];
localize "str_fixToolFail" call dayz_rollingMessages;
} else {
cutText [localize "str_fixtoolMissingTape", "PLAIN DOWN"];
localize "str_fixtoolMissingTape" call dayz_rollingMessages;
};
} else {
cutText [localize "str_fixtoolMissingHandle", "PLAIN DOWN"];
localize "str_fixtoolMissingHandle" call dayz_rollingMessages;
};
};