mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
localize
This commit is contained in:
@@ -43,22 +43,22 @@ if(_activated) then {
|
|||||||
_id = [player,"crushed"] spawn player_death;
|
_id = [player,"crushed"] spawn player_death;
|
||||||
};
|
};
|
||||||
if ((_vehicle emptyPositions "driver") > 0) exitWith {
|
if ((_vehicle emptyPositions "driver") > 0) exitWith {
|
||||||
cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"];
|
cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"];
|
||||||
player action ["getInDriver", _vehicle];
|
player action ["getInDriver", _vehicle];
|
||||||
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
||||||
};
|
};
|
||||||
if ((_vehicle emptyPositions "gunner") > 0) exitWith {
|
if ((_vehicle emptyPositions "gunner") > 0) exitWith {
|
||||||
cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"];
|
cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"];
|
||||||
player action ["GetInGunner", _vehicle];
|
player action ["GetInGunner", _vehicle];
|
||||||
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
||||||
};
|
};
|
||||||
if ((_vehicle emptyPositions "commander") > 0) exitWith {
|
if ((_vehicle emptyPositions "commander") > 0) exitWith {
|
||||||
cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"];
|
cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"];
|
||||||
player action ["getInCommander", _vehicle];
|
player action ["getInCommander", _vehicle];
|
||||||
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
||||||
};
|
};
|
||||||
if ((_vehicle emptyPositions "cargo") > 0) exitWith {
|
if ((_vehicle emptyPositions "cargo") > 0) exitWith {
|
||||||
cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"];
|
cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"];
|
||||||
player action ["getInCargo", _vehicle];
|
player action ["getInCargo", _vehicle];
|
||||||
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
DZE_AntiWallCounter = DZE_AntiWallCounter + 1;
|
||||||
};
|
};
|
||||||
@@ -69,4 +69,4 @@ if(_activated) then {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
DZE_AntiWallCounter = 0;
|
DZE_AntiWallCounter = 0;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user