SA-MP Forums Archive
car exit code? - 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: car exit code? (/showthread.php?tid=115149)



car exit code? - rs2fun111 - 22.12.2009

can someone say what is code of exit car?


Re: Please Help With Car Owner - MadeMan - 22.12.2009

pawn Код:
if(strcmp(name,"[KFS]_Kalvi",false) != 0)
This means if player's name IS NOT "[KFS]_Kalvi".

pawn Код:
if(!strcmp(name,"[KFS]_Kalvi",false))
This means if player's name IS "[KFS]_Kalvi".


Re: Please Help With Car Owner - rs2fun111 - 22.12.2009

can someone say what is code of exit car?


Re: Please Help With Car Owner - GTAguillaume - 22.12.2009

Quote:
Originally Posted by rs2fun111
can someone say what is code of exit car?
RemovePlayerFromVehicle(playerid);



Re: car exit code? - rs2fun111 - 22.12.2009

thank you