mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-24 09:29:21 +03:00
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
private ["_unit","_medic"];
|
|
|
|
_unit = _this select 0;
|
|
_medic = _this select 1;
|
|
|
|
if (_unit == player) then {
|
|
r_player_infected = false;
|
|
_unit setVariable["USEC_infected",false,true];
|
|
};
|
|
|
|
if (_medic != player) then {
|
|
format [localize "str_actions_medical_antibiotics_received",(name _medic)] call dayz_rollingMessages;
|
|
};
|