18.06.2011, 11:22
i want to make a /clear command that removes all spawned vehicles,ive searched and found nothing good
ps for rcon only
pls help
ps for rcon only
pls help
COMMAND:destroyallvehicles(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
for(new c=1;c<MAX_VEHICLES;c++)
{
DestroyVehicle(c);
}
}
return true;
}