ACE3/addons/fire/functions/fnc_medical_progress.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

24 lines
451 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 <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 ["_medic", "_patient"];
[_patient] call FUNC(isBurning)