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

@@ -1,4 +1,4 @@
if (DZE_ActionInProgress) exitWith {cutText [localize "str_epoch_player_92","PLAIN DOWN"];};
if (DZE_ActionInProgress) exitWith {localize "str_epoch_player_92" call dayz_rollingMessages;};
DZE_ActionInProgress = true;
private ["_array","_vehicle","_part","_hitpoint","_type","_hasToolbox","_section","_nameType","_namePart","_damage","_selection","_dis","_sfx","_hitpoints","_allFixed","__FILE__"];
@@ -48,11 +48,11 @@ if (_section and _hasToolbox) then {
_vehicle setvelocity [0,0,1];
//Success!
cutText [format [localize "str_player_04",_namePart,_nameType], "PLAIN DOWN"];
format[localize "str_player_04",_namePart,_nameType] call dayz_rollingMessages;
} else {
player addMagazine _part;
};
} else {
cutText [format [localize "str_player_03",_namePart], "PLAIN DOWN"];
format[localize "str_player_03",_namePart] call dayz_rollingMessages;
};
DZE_ActionInProgress = false;