Remove rtitleText in fillBloodBag.sqf

Not necessary to inform recipient and prevents two messages on screen at
once for instigator.

Classic bloodbag system is now added in vanilla too.

Vanilla commits:

cb71d926ed

bee9bd1638
This commit is contained in:
ebayShopper
2017-03-19 16:35:17 -04:00
parent 9324deffaf
commit 53158a11ed
4 changed files with 22 additions and 26 deletions

View File

@@ -46,7 +46,7 @@ while {r_doLoop and (_i < 25)} do {
if (_isMedic and !_started) then {
player removeMagazine "emptyBloodBag";
localize "str_actions_medical_transfusion_start" call dayz_rollingMessages;
[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_transfusion_start","PLAIN DOWN"] call RE;
//[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_transfusion_start","PLAIN DOWN"] call RE;
_started = true;
};
@@ -69,7 +69,7 @@ while {r_doLoop and (_i < 25)} do {
if ((_blood <= _bloodAfter) or (_i == 25)) then {
localize "str_actions_medical_bagDone" call dayz_rollingMessages;
[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_bagDone","PLAIN DOWN"] call RE;
//[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_bagDone","PLAIN DOWN"] call RE;
//_victim setVariable ["USEC_BloodQty", _bloodAfter, true];
r_doLoop = false;
_complete = true;
@@ -81,7 +81,7 @@ while {r_doLoop and (_i < 25)} do {
r_doLoop = false;
r_interrupt = true;
localize "str_actions_medical_bagInterrupted" call dayz_rollingMessages;
[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_bagInterrupted","PLAIN DOWN"] call RE;
//[player,_victim,"loc",rTITLETEXT,localize "str_actions_medical_bagInterrupted","PLAIN DOWN"] call RE;
};
};