arma3_missions/helotraining_rewrite.Altis/playerVehicleInListBool.sqf
2016-07-24 23:17:24 +03:00

11 lines
324 B
Plaintext

diag_log format["playerVehicleInListBool called, _this: %1", _this];
private _triggerList = _this select 0;
private _returnValue = false;
if (!(([_triggerList] call playerVehicleInList) isEqualTo false)) then
{
_returnValue = true;
}
diag_log format["playerVehicleInListBool returning: %1", _returnValue];
_returnValue