Respawn all empty cars
#2

Try This:

Код:
	if(strcmp(cmd, "/respawnallcars", true) == 0 || strcmp(cmd, "/carreset", true) == 0) 
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if(PlayerInfo[playerid][pAdmin] < 4)
			{
			    SendClientMessage(playerid, COLOR_GRAD1, "** you are not authorized to use that command!");
			    return 1;
			}
			new bool:unwanted[CAR_AMOUNT];
			for(new player=0; player<MAX_PLAYERS; player++)
     		{
            	if(IsPlayerInAnyVehicle(player)) { unwanted[GetPlayerVehicleID(player)]=true; }
     		}
			for(new car = 1; car <= 1850; car++)
			{
				if(!unwanted[car]) SetVehicleToRespawn(car);
			}
			format(string, sizeof(string), "SERVER: All unused cars respawned by %s.", sendername);
			BroadCast(COLOR_WHITE,string);
			format(string, sizeof(string), "[ADMIN]: %s has Respawned All Cars.", sendername);
			ABroadCast(COLOR_LIGHTRED,string, 5);
			GameTextForAll("~w~Every Unused Car ~n~~g~Respawned!",5000,1);
			new y, m, d;
			new h,mi,s;
			getdate(y,m,d);
			gettime(h,mi,s);
			format(string,sizeof(string), "(%d/%d/%d)[%d:%d:%d] %s Has Respawned All Unused Cars",d,m,y,h,mi,s,sendername);
			AdminLog(string);
		}
		return 1;
	}
Reply


Messages In This Thread
Respawn all empty cars - by ihatetn931 - 16.08.2010, 17:38
Re: Respawn all empty cars - by CT_Ronnie_Deo - 16.08.2010, 17:54
Re: Respawn all empty cars - by Dark_Kostas - 16.08.2010, 18:13
Re: Respawn all empty cars - by Kidel - 16.08.2010, 18:28

Forum Jump:


Users browsing this thread: 1 Guest(s)