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,6 +1,6 @@
private ["_vehicle","_started","_finished","_animState","_isMedic","_abort","_configVeh","_nameText","_findNearestVehicles","_findNearestVehicle","_IsNearVehicle","_towTruck","_towTruckSize","_allowedSize"];
if (DZE_ActionInProgress) exitWith {cutText [localize "str_epoch_player_96","PLAIN DOWN"]};
if (DZE_ActionInProgress) exitWith {localize "str_epoch_player_96" call dayz_rollingMessages;};
DZE_ActionInProgress = true;
player removeAction s_player_towing;
@@ -83,14 +83,14 @@ if(_IsNearVehicle >= 1) then {
_vehicle attachTo [_towTruck,[1.3,-2,2.3]];
_towTruck setVariable ["DZEinTow", true, true];
_towTruck setVariable ["DZEvehicleInTow", _vehicle, true];
cutText [format[(localize "str_epoch_player_175"),_nameText], "PLAIN DOWN"];
format[localize "str_epoch_player_175",_nameText] call dayz_rollingMessages;
};
} else {
cutText [format[(localize "str_epoch_player_176"),_nameText], "PLAIN DOWN"];
format[localize "str_epoch_player_176",_nameText] call dayz_rollingMessages;
};
} else {
cutText [format[(localize "str_epoch_player_177"),_nameText], "PLAIN DOWN"];
format[localize "str_epoch_player_177",_nameText] call dayz_rollingMessages;
};
};
@@ -98,7 +98,7 @@ if(_IsNearVehicle >= 1) then {
} else {
cutText [localize "str_epoch_player_27","PLAIN DOWN"];
localize "str_epoch_player_27" call dayz_rollingMessages;
};
DZE_ActionInProgress = false;
s_player_towing = -1;