18.06.2011, 11:24
You're asking for something like this?
and BTW: https://sampforum.blast.hk/showthread.php?tid=187229
pawn Код:
COMMAND:destroyallvehicles(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
for(new c=1;c<MAX_VEHICLES;c++)
{
DestroyVehicle(c);
}
}
return true;
}