mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-04-08 13:42:49 +03:00
13 lines
362 B
Plaintext
13 lines
362 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_general_received",(name _medic),localize "STR_ITEM_DESC_WIPES"] call dayz_rollingMessages;
|
|
};
|