mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d339b9567d
WIP
28 lines
491 B
Plaintext
28 lines
491 B
Plaintext
/*
|
|
* Author: bux578
|
|
* Checks if AI is a valid target for switching.
|
|
*
|
|
* Arguments:
|
|
* 0: unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Boolean
|
|
*
|
|
* Example:
|
|
* [_unit] call FUNC(isValidAi)
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private "_unit";
|
|
|
|
_unit = _this select 0;
|
|
|
|
!([_unit] call EFUNC(common,isPlayer)
|
|
|| {_unit in playableUnits}
|
|
|| {vehicle _unit != _unit}
|
|
|| {_unit getVariable [QGVAR(IsPlayerUnit), false]}
|
|
|| {_unit getVariable [QGVAR(IsPlayerControlled), false]})
|