gruppe-adler / gruppe_adler_mod

Gruppe Adler Mod is a collection of Gruppe Adler original addons that add new functionality or modify and improve existing functionality to suit our Arma gameplay.
GNU General Public License v2.0
12 stars 6 forks source link

show hint while someone's doing medical stuff on you #174

Open Fusselwurm opened 4 years ago

Fusselwurm commented 4 years ago

lijk dis:

https://github.com/fparma/fparma-mods/blob/master/addons/common/XEH_postInitClient.sqf#L37-L43

{
    ["ace_medical_treatment_" + _x, {
        if (lifeState ace_player == "INCAPACITATED") then {
            titleText ["Someone is helping you", "PLAIN DOWN", 2, true, true];
        };
    }] call CBA_fnc_addEventHandler;
} foreach ["bandageLocal", "checkBloodPressureLocal", "cprLocal", "fullHealLocal", "ivBagLocal", "medicationLocal", "splintLocal", "tourniquetLocal"];
Fusselwurm commented 4 years ago

i dont see a way for the patient to know that someone started treating them.

there is:

Fusselwurm commented 3 years ago

todo: look into events added by https://github.com/acemod/ACE3/pull/8385 , looks like I can implement this now?

Fusselwurm commented 1 year ago

todo: look into events added by acemod/ACE3#8385 , looks like I can implement this now?

["ace_treatmentStarted", {systemChat str _this /*[_medic, _patient, _bodyPart, _classname, _itemUser, _usedItem]*/}] call CBA_fnc_addEventHandler;

yes. do we really want it though?

nomisum commented 1 year ago

certainly interesting, yes