arma3_missions/helotraining.Altis/lzlanded.sqf

13 lines
259 B
Plaintext
Raw Normal View History

2016-07-24 13:29:32 +00:00
_triggerList = _this select 0;
_returnValue = false;
{
_plr = _x;
_veh = vehicle _plr;
if ( (_plr != _veh) && (isTouchingGround _veh) && (_veh in _triggerList) ) then
{
_returnValue = true;
}
} forEach playableUnits;
_returnValue