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

@@ -4,7 +4,7 @@ private ["_playerPos","_item","_location","_config","_text","_dir","_dis","_sfx"
call gear_ui_init;
closeDialog 1;
if (r_action_count != 1) exitWith { cutText [localize "str_player_actionslimit", "PLAIN DOWN"]; };
if (r_action_count != 1) exitWith { localize "str_player_actionslimit" call dayz_rollingMessages; };
//Player Pos
_playerPos = getPosATL player;
@@ -27,7 +27,7 @@ _stashname = getText (configFile >> "CfgVehicles" >> _stashtype >> "displayName"
// Items are missing
if ((!(_consume IN magazines player))) exitWith {
r_action_count = 0;
cutText [format [localize "str_player_31_stash",_consumetext] , "PLAIN DOWN"];
format[localize "str_player_31_stash",_consumetext] call dayz_rollingMessages;
};
_location = player modeltoworld [0,2.5,0];
@@ -67,8 +67,8 @@ if ((count _worldspace) == 2) then {
diag_log [diag_ticktime, __FILE__, "New Networked object, request to save to hive. PVDZ_obj_Publish:", PVDZ_obj_Publish];
r_action_count = 0;
cutText [format [localize "str_success_stash_pitch",_stashname], "PLAIN DOWN"];
format[localize "str_success_stash_pitch",_stashname] call dayz_rollingMessages;
} else {
r_action_count = 0;
cutText [format [localize "str_fail_stash_pitch",_stashname], "PLAIN DOWN"];
format[localize "str_fail_stash_pitch",_stashname] call dayz_rollingMessages;
};