mirror of
https://github.com/rambo/arma3_missions.git
synced 2024-08-30 16:52:13 +00:00
11 lines
325 B
Plaintext
11 lines
325 B
Plaintext
//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;
|
|
};
|
|
|
|
//ag_log format["playerVehicleInListBool returning: %1", _returnValue];
|
|
_returnValue |