arma3_missions/helotraining_mp.Altis/playerVehicleInListBool.sqf

11 lines
325 B
Plaintext
Raw Normal View History

//ag_log format["playerVehicleInListBool called, _this: %1", _this];
private _triggerList = _this select 0;
private _returnValue = false;
if (!(([_triggerList] call playerVehicleInList) isEqualTo false)) then
{
_returnValue = true;
2016-07-24 21:05:39 +00:00
};
//ag_log format["playerVehicleInListBool returning: %1", _returnValue];
_returnValue