ACE3/addons/medical_treatment/functions/fnc_getStitchTime.sqf
mharis001 ec9e6c088b Medical - Only stitch wounds on not bleeding body parts (#7044)
* Only stitch wounds on not bleeding body parts
2019-09-28 21:48:19 +01:00

22 lines
465 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)) * WOUND_STITCH_TIME