ACE3/addons/medical_treatment/functions/fnc_getStitchTime.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
535 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)