mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical - Fix script error when bandaging (#9956)
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
This commit is contained in:
parent
7480ae377d
commit
23842aab39
@ -10,7 +10,8 @@
|
||||
* 3: Treatment <STRING>
|
||||
* 4: Item User <OBJECT>
|
||||
* 5: Used Item <STRING>
|
||||
* 6: Bandage effectiveness coefficient <NUMBER> (default: 1)
|
||||
* 6: Create litter <BOOLEAN>
|
||||
* 7: Bandage effectiveness coefficient <NUMBER> (default: 1)
|
||||
*
|
||||
* Return Value:
|
||||
* None
|
||||
@ -21,10 +22,10 @@
|
||||
* Public: No
|
||||
*/
|
||||
|
||||
_this set [6, _this param [6, 1]]; // set default Bandage effectiveness coefficient
|
||||
_this set [7, _this param [7, 1]]; // set bandage effectiveness coefficient
|
||||
[QGVAR(bandaged), _this] call CBA_fnc_localEvent; // Raise event with reference so mods can modify this
|
||||
|
||||
params ["_medic", "_patient", "_bodyPart", "_classname", "", "", "_bandageEffectiveness"];
|
||||
params ["_medic", "_patient", "_bodyPart", "_classname", "", "", "", "_bandageEffectiveness"];
|
||||
|
||||
[_patient, "activity", LSTRING(Activity_bandagedPatient), [[_medic, false, true] call EFUNC(common,getName)]] call FUNC(addToLog);
|
||||
|
||||
|
@ -42,7 +42,7 @@ The vehicle events will also have the following local variables available `_gunn
|
||||
|`ace_treatmentSucceded` | [_caller, _target, _selectionName, _className, _itemUser, _usedItem] | Local | Listen | Treatment action is completed (local on the _caller)
|
||||
|`ace_treatmentFailed` | [_caller, _target, _selectionName, _className, _itemUser, _usedItem] | Local | Listen | Treatment action has been interrupted (local on the _caller)
|
||||
|`ace_medical_handleUnitVitals` | [_unit, _deltaT] | Local | Listen | Vitals update ran for unit, _deltaT is the time elapsed since the previous vitals update (local to _unit)
|
||||
|`ace_medical_treatment_bandaged` | [_medic, _patient, _bodyPart, _className, _bandageEffectiveness] | Local | Listen | _medic has bandaged _patient, the array can be modified to change treatment parameters (local to _medic)
|
||||
|`ace_medical_treatment_bandaged` | [_medic, _patient, _bodyPart, _className, _itemUser, _usedItem, _createLitter, _bandageEffectiveness] | Local | Listen | _medic has bandaged _patient, the array can be modified to change treatment parameters (local to _medic)
|
||||
|
||||
### 2.3 Interaction Menu (`ace_interact_menu`)
|
||||
MenuType: 0 = Interaction, 1 = Self Interaction
|
||||
|
Loading…
Reference in New Issue
Block a user