mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
380 B
Plaintext
18 lines
380 B
Plaintext
/*
|
|
* Author: marc_book, edited by commy2
|
|
* Checks if a unit is an engineer.
|
|
*
|
|
* Arguments:
|
|
* 0: unit to be checked <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* is the unit an engineer <BOOL>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
_unit getVariable ["ACE_isEngineer", getNumber (configFile >> "CfgVehicles" >> typeOf _unit >> "engineer") == 1] // return
|