2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2021-10-14 15:49:10 +00:00
|
|
|
/*
|
2023-08-16 23:18:01 +00:00
|
|
|
* Author: tcvm
|
2021-10-14 15:49:10 +00:00
|
|
|
* Checks if patient is still burning for medical progress to continue.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Arguments <ARRAY>
|
2024-06-22 18:07:36 +00:00
|
|
|
* - 0: Medic (not used) <OBJECT>
|
|
|
|
* - 1: Patient <OBJECT>
|
2021-10-14 15:49:10 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Continue pat down <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [[player, cursorObject]] call ace_fire_fnc_medical_progress
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_args"];
|
2024-06-22 18:07:36 +00:00
|
|
|
_args params ["", "_patient"];
|
2021-10-14 15:49:10 +00:00
|
|
|
|
2024-06-22 18:07:36 +00:00
|
|
|
_patient call FUNC(isBurning)
|