SA-MP Forums Archive
Destorying Vehicles - 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: Destorying Vehicles (/showthread.php?tid=152912)



Destorying Vehicles - MummyKillerSLO - 06.06.2010

Hi!

How to destroy all vehicles in my server?


Re: Destorying Vehicles - Jonni8 - 06.06.2010

pawn Код:
CMD:destroyall(playerid, params[])
{
   for (new i=0; i<MAX_VEHICLES; i++)
   {
      DestroyVehicle(i);
   }
   return 1;
}