SA-MP Forums Archive
Anyone can 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: Anyone can help me (/showthread.php?tid=204316)



Anyone can help me - TopAz07 - 29.12.2010

My problem is. How can i make a system when passenger enter's a vehicle for example a bus, then he will go into an interior


Re: Anyone can help me - Grim_ - 29.12.2010

pawn Код:
public OnPlayerEnterVehicle( playerid, vehicleid, ispassenger )
{
   if( ispassenger == 1 )
   {
      // Information for interior and position here
   }
   return 1;
}



Re: Anyone can help me - TopAz07 - 29.12.2010

thank you GRIM. I will try it