ACE3/addons/medical/functions/fnc_isMedic.sqf
PabstMirror 48f7455ef1 Opps2
2015-04-30 01:23:23 -05:00

25 lines
550 B
Plaintext

/*
* Author: Glowbal, KoffeinFlummi
* Check if a unit is any medical class
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: Class <NUMBER> <OPTIONAL>
*
* ReturnValue:
* Is in of medic class <BOOL>
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_unit", "_class", "_medicN"];
_unit = _this select 0;
_medicN = if (count _this > 1) then {_this select 1} else {1};
_class = _unit getVariable [QGVAR(medicClass),
getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "attendant")];
_class >= _medicN min GVAR(medicSetting)