SA-MP Forums Archive
Help me :( ! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help me :( ! (/showthread.php?tid=127182)



Help me :( ! - sebacol - 12.02.2010

How can I script that to check is any player in vehicle


Re: Help me :( ! - Streetplaya - 12.02.2010

pawn Код:
stock IsAnyPlayerInVehicle(vehicleid)
{
  for (new i = 0; i < MAX_PLAYERS; ++i)
  {
    if (IsPlayerInVehicle(i, vehicleid))
      return true;
  }
  return false;
}