How to make? - 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: How to make? (
/showthread.php?tid=81143)
How to make? -
propilot - 08.06.2009
Hey how to make plate number i mean
all the cars in the server shll be
PPFS
how to do this with one script?
is that possible?
Re: How to make? -
Correlli - 08.06.2009
Just check this:
https://sampwiki.blast.hk/wiki/SetVehicleNumberPlate
pawn Код:
for(new v = 0; v < MAX_VEHICLES; v++)
{
SetVehicleNumberPlate(v, "PPFS");
SetVehicleToRespawn(v);
}
Simple, isn't it?
Re: How to make? -
propilot - 12.06.2009
Quote:
Originally Posted by Don Correlli
|
wow lol

easy thank you
Re: How to make? -
Correlli - 12.06.2009
You're welcome.