[Ajuda] Deletar veiculo sem utilidade
#1

tenho um comando que cria carros para os playes, quero apagar os veiculos que os playes nao estao usando, mas se apagar todos vai apagar os carros do server, entao quero apagar apenas os carros que foram criados com:
Код:
LVehicleID
Код:
LVehicleID = CreateVehicle(car, X,Y,Z, Angle, colour1, colour2, -1); LinkVehicleToInterior(LVehicleID,int1);
quero respawn todos os carros sem uso e apagar os sem uso que tem LVehicleID na frente

Код:
	if(strcmp(cmdtext, "/RCT", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if(PlayerInfo[playerid][pAdmin] < 1)
			{
			    SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб autorizado a usar este comando!");
			    return 1;
			}
			
			new bool:vehicle[MAX_VEHICLES];
			GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
			format(string, sizeof string, "{88AA88}[TBD]:{ffb020}  %s{AAFFFF} respawnou todos os veнculo.", playername);
			SendClientMessageToAll(-1, string);
			for(new j = 1; GetVehicleModel(j); ++j)
			{
				vehicle[j] = false;
				for(new i, p = GetMaxPlayers(); i < p; ++i)
				{
					if(!IsPlayerInAnyVehicle(i) || !IsPlayerConnected(i)) continue;
					if(IsPlayerInVehicle(i, j))
	        		{
						vehicle[j] = true;
						break;
					}
				}
				if(!vehicle[j]) SetVehicleToRespawn(j);
				new LVehicleID;
				DestroyVehicle(GetPlayerVehicleID(LVehicleID));


			}
		}
		return 1;
	}
Reply


Messages In This Thread
Deletar veiculo sem utilidade - by L.S.T - 30.03.2015, 22:41
Re: Deletar veiculo sem utilidade - by SuperJesterPT - 30.03.2015, 22:44
Re: Deletar veiculo sem utilidade - by Tiger157000 - 30.03.2015, 23:22
Re: Deletar veiculo sem utilidade - by ipsLuan - 31.03.2015, 00:10
Re: Deletar veiculo sem utilidade - by L.S.T - 31.03.2015, 00:28
Re: Deletar veiculo sem utilidade - by arakuta - 31.03.2015, 02:45
Re: Deletar veiculo sem utilidade - by L.S.T - 31.03.2015, 22:30
Re: Deletar veiculo sem utilidade - by ZeZin - 31.03.2015, 22:51
Re: Deletar veiculo sem utilidade - by arakuta - 31.03.2015, 23:00
Re: Deletar veiculo sem utilidade - by L.S.T - 31.03.2015, 23:12

Forum Jump:


Users browsing this thread: 1 Guest(s)