#include "script_component.hpp" /* * Author: mharis001 * Calculates the Surgical Kit treatment time based on the amount of bandaged wounds. * * Arguments: * 0: Medic (not used) * 1: Patient * * Return Value: * Treatment Time * * Example: * [player, cursorObject] call ace_medical_treatment_fnc_getStitchTime * * Public: No */ #define TIME_PER_WOUND 5 params ["", "_patient"]; count GET_BANDAGED_WOUNDS(_patient) * TIME_PER_WOUND