[AJUDA]Respawn Veiculos Naum Ultilizados
#2

pawn Код:
new bool:VeiculoOcupado[MAX_VEHICLES];//inicio do GM/FS
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    VeiculoOcupado[vehicleid] = true;
    return 1;
}

public OnPlayerExitVehicle(playerid, vehicleid)
{
    VeiculoOcupado[vehicleid] = false;
    return 1;
}
pawn Код:
if(strcmp(cmd, "/rc", true) == 0)
    {
        if(IsPlayerAdmin(playerid))
        {
            new nome[MAX_PLAYER_NAME];
            GetPlayerName(playerid, nome, MAX_PLAYER_NAME);
            new msg[80];
            format(msg, sizeof(msg), "O Admin %s Respawnou os veiculos", nome);
            SendClientMessageToAll(-1, msg);
            for(new v = 0; v <= MAX_VEHICLES; v++)
            {
                if(VeiculoOcupado[v] == false)
                {
                    SetVehicleToRespawn(v);
                }
            }
        }
        else return SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб autorizado a usar este comando!");
    }
Reply


Messages In This Thread
[AJUDA]Respawn Veiculos Naum Ultilizados - by [BC]Pegador[KoF] - 20.11.2011, 21:38
Re: [AJUDA]Respawn Veiculos Naum Ultilizados - by Cristhian - 20.11.2011, 21:41
Re: [AJUDA]Respawn Veiculos Naum Ultilizados - by TiagoPS - 20.11.2011, 21:45
Re: [AJUDA]Respawn Veiculos Naum Ultilizados - by Pharrel - 20.11.2011, 21:48
Re: [AJUDA]Respawn Veiculos Naum Ultilizados - by Cristhian - 20.11.2011, 21:51

Forum Jump:


Users browsing this thread: 1 Guest(s)