mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-22 20:12:20 +03:00
Changing the messages for wipes. It cannot be done like it was before for the german language. Thx @RedLink-kam for the russain translations. Ive re-ordered the new strings so the Namalsk compatibility is the last again. Namalsk should be always last since it is just an addon from a different mod.
13 lines
329 B
Plaintext
13 lines
329 B
Plaintext
private ["_unit","_medic"];
|
|
|
|
_unit = _this select 0;
|
|
_medic = _this select 1;
|
|
|
|
r_player_Sepsis = [false, 0];
|
|
_unit setVariable ["USEC_Sepsis", false, true];
|
|
_unit setVariable ["sepsisStarted", nil];
|
|
|
|
if (_medic != player) then {
|
|
format [localize "str_actions_medical_wipes_received",(name _medic)] call dayz_rollingMessages;
|
|
};
|