ACE3/addons/medical/functions/fnc_isMedicalVehicle.sqf

22 lines
420 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Check if vehicle is a medical vehicle
*
* Arguments:
* 0: The Vehicle <OBJECT>
*
* Return Value:
* Is in of medic class <BOOL>
*
* Example:
* [car] call ace_medical_fnc_isMedicalVehicle
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_vehicle"];
(_vehicle getVariable [QGVAR(medicClass), getNumber (configFile >> "CfgVehicles" >> typeOf _vehicle >> "attendant")]) > 0