mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
347 B
Plaintext
18 lines
347 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?
|
||
|
*/
|
||
|
|
||
|
private "_unit";
|
||
|
|
||
|
_unit = _this select 0;
|
||
|
|
||
|
_unit getVariable ["AGM_IsEngineer", getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "engineer") == 1]
|