ACE3/addons/fire/functions/fnc_medical_progress.sqf
johnb432 f45dff8a09
Fire - Mini-Rewrite (#9757)
Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-06-22 15:07:36 -03:00

24 lines
454 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: tcvm
* Checks if patient is still burning for medical progress to continue.
*
* Arguments:
* 0: Arguments <ARRAY>
* - 0: Medic (not used) <OBJECT>
* - 1: Patient <OBJECT>
*
* Return Value:
* Continue pat down <BOOL>
*
* Example:
* [[player, cursorObject]] call ace_fire_fnc_medical_progress
*
* Public: No
*/
params ["_args"];
_args params ["", "_patient"];
_patient call FUNC(isBurning)