diff --git a/SQF/dayz_code/medical/publicEH/medABwipe.sqf b/SQF/dayz_code/medical/publicEH/medABwipe.sqf new file mode 100644 index 000000000..b0a3da016 --- /dev/null +++ b/SQF/dayz_code/medical/publicEH/medABwipe.sqf @@ -0,0 +1,12 @@ +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; +};