SA-MP Forums Archive
A little reminder please :D - 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)
+--- Thread: A little reminder please :D (/showthread.php?tid=586928)



A little reminder please :D - kingcrome - 26.08.2015

Im making a simple vehicle renting system for my server.
I to make it so when the player hops into vehicle id 401 It displays a message, but I forgot the line of code that checks what vehicle the player has enterd.


Re: A little reminder please :D - DoDler - 26.08.2015

PHP код:
public OnPlayerEnterVehicle(playeridvehicleidispassenger)
{
  if(
GetVehicleModel(vehicleid) == 401)
  {
      
// message here;
  
}
  return 
1;




Re: A little reminder please :D - kingcrome - 26.08.2015

Cheers buddy.