ACE3/addons/medical_treatment/functions/fnc_getStitchTime.sqf
pterolatypus f434549faf
Medical Treatment - Change stitching action to be per-body-part (#9005)
* Make stitching action per-body-part

* Apply suggestions from code review

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>

---------

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
Co-authored-by: Salluci <salluci.lovi@gmail.com>
2023-06-28 01:43:45 +03:00

23 lines
532 B
Plaintext

#include "script_component.hpp"
/*
* Author: kymckay
* Calculates the Surgical Kit treatment time based on the amount of stitchable wounds.
*
* Arguments:
* 0: Medic (not used) <OBJECT>
* 1: Patient <OBJECT>
* 2: Body Part <STRING>
*
* Return Value:
* Treatment Time <NUMBER>
*
* Example:
* [player, cursorObject, "head"] call ace_medical_treatment_fnc_getStitchTime
*
* Public: No
*/
params ["", "_patient", "_bodyPart"];
count (GET_BANDAGED_WOUNDS(_patient) getOrDefault [_bodyPart, []]) * GVAR(woundStitchTime)