ACE3/addons/repair/functions/fnc_isRepairVehicle.sqf

26 lines
592 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Check if vehicle is a engineering vehicle.
*
* Arguments:
* 0: Vehicle <OBJECT>
*
* Return Value:
* Is engineering vehicle <BOOL>
*
* Example:
* [vehicle] call ace_repair_fnc_isRepairVehicle
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-09 06:54:44 +00:00
params ["_vehicle"];
TRACE_1("params",_vehicle);
if (_vehicle isKindOf "CAManBase") exitWith {false};
// Value can be integer or boolean
private _value = _vehicle getVariable ["ACE_isRepairVehicle", getNumber (configFile >> "CfgVehicles" >> typeOf _vehicle >> QGVAR(canRepair))];
_value in [1, true] // return