ACE3/addons/medical/functions/fnc_isMedic.sqf

25 lines
550 B
Plaintext
Raw Normal View History

/*
2015-03-19 21:34:12 +00:00
* 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"
2015-04-30 06:23:23 +00:00
private ["_unit", "_class", "_medicN"];
_unit = _this select 0;
_medicN = if (count _this > 1) then {_this select 1} else {1};
2015-03-19 21:27:12 +00:00
_class = _unit getVariable [QGVAR(medicClass),
getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "attendant")];
2015-03-19 21:34:12 +00:00
_class >= _medicN min GVAR(medicSetting)