ACE3/addons/common/functions/fnc_isMedic.sqf
jonpas 76e1aafb33
Use function documentation script (#6897)
Co-authored-by: Björn Dahlgren <bjorn@dahlgren.io>
2023-04-30 23:03:35 +02:00

23 lines
394 B
Plaintext

#include "script_component.hpp"
/*
* Author: SilentSpike
* Check if a unit is a medic
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* Unit is medic <BOOL>
*
* Example:
* [player] call ace_common_fnc_isMedic
*
* Public: Yes
*/
params ["_unit"];
private _isMedic = _unit getVariable [QEGVAR(medical,medicClass), getNumber (configOf _unit >> "attendant")];
_isMedic > 0