ACE3/addons/medical_treatment/functions/fnc_getStitchTime.sqf
diwako 2b0db19807
Medical - Adjustable times for many treatment actions (#7951)
* adjustable times for most constant treatment times

* add new line, formatting

* cleanup merge

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2020-10-29 11:37:44 -05:00

22 lines
472 B
Plaintext

#include "script_component.hpp"
/*
* Author: mharis001
* Calculates the Surgical Kit treatment time based on the amount of stitchable wounds.
*
* Arguments:
* 0: Medic (not used) <OBJECT>
* 1: Patient <OBJECT>
*
* Return Value:
* Treatment Time <NUMBER>
*
* Example:
* [player, cursorObject] call ace_medical_treatment_fnc_getStitchTime
*
* Public: No
*/
params ["", "_patient"];
count (_patient call FUNC(getStitchableWounds)) * GVAR(treatmentTimeStich)