04.10.2011, 15:00
pawn Код:
COMMAND:despawnallveh(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
for(new i = 0; i < MAX_VEHICLES; i++)
{
new string[64], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof string, "~b~Admin: ~g~%s ~r~has despawned all vehicles", pName);
GameTextForAll(string, 5000, 5);
SetVehicleToRespawn(i);
}
}
else
{
SendClientMessage(playerid, COLOR_RED,"You do not have access to this command");
}
return 1;
}