2015-02-21 23:44:11 +00:00
|
|
|
/*
|
2015-03-19 21:34:12 +00:00
|
|
|
* Author: Glowbal, KoffeinFlummi
|
2015-02-21 23:44:11 +00:00
|
|
|
* Check if a unit is any medical class
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The Unit <OBJECT>
|
2015-08-22 14:25:10 +00:00
|
|
|
* 1: Class <NUMBER> (default: 1)
|
2015-02-21 23:44:11 +00:00
|
|
|
*
|
|
|
|
* ReturnValue:
|
|
|
|
* Is in of medic class <BOOL>
|
|
|
|
*
|
2016-01-10 05:54:48 +00:00
|
|
|
* Example:
|
|
|
|
* [player] call ace_medical_fnc_isMedic
|
|
|
|
*
|
2015-02-21 23:44:11 +00:00
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-22 14:25:10 +00:00
|
|
|
params ["_unit", ["_medicN", 1]];
|
2015-02-21 23:44:11 +00:00
|
|
|
|
2016-01-10 05:54:48 +00:00
|
|
|
private _class = _unit getVariable [QGVAR(medicClass), getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "attendant")];
|
|
|
|
|
|
|
|
if (_class >= _medicN min GVAR(medicSetting)) exitWith {true};
|
|
|
|
if (!GVAR(increaseTrainingInLocations)) exitWith {false};
|
|
|
|
|
|
|
|
if (([_unit] call FUNC(isInMedicalVehicle)) || {[_unit] call FUNC(isInMedicalFacility)}) then {
|
|
|
|
_class = _class + 1; //boost by one: untrained becomes medic, medic becomes doctor
|
|
|
|
};
|
2015-02-21 23:44:11 +00:00
|
|
|
|
2015-03-19 21:34:12 +00:00
|
|
|
_class >= _medicN min GVAR(medicSetting)
|