ACE3/addons/common/functions/fnc_isEngineer.sqf
2015-01-12 19:22:58 +01:00

19 lines
400 B
Plaintext

/*
* Author: marc_book, edited by commy2
*
* Checks if a unit is an engineer.
*
* Arguments:
* 0: unit to be checked (object)
*
* Return Value:
* Bool: is the unit an engineer?
*/
#include "\z\ace\addons\common\script_component.hpp"
private "_unit";
_unit = _this select 0;
_unit getVariable ["ACE_IsEngineer", getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "engineer") == 1]