[Ajuda] Comando Resetar veiculos sem Uso
#10

Assim у.
pawn Код:
CMD:rc(playerid, params[])
{
if (APlayerData[playerid][PlayerLevel] >= 1)
{

new str[128], bool:vehicle[MAX_VEHICLES], AdminName[24];
GetPlayerName(playerid, AdminName, sizeof(AdminName));
format(str, sizeof(str), "{00FF00}O Administrador {FFFFFF}%s {00FF00}resetou todos os veiculos sem uso!", AdminName);
SendClientMessage(playerid, -1, str);
 static bool:Veiculo[MAX_VEHICLES];
for(new j = 1; j < MAX_VEHICLES; j++)
{
    if(!GetVehicleModel(j)) continue;
    Veiculo[j] = false;
    for(new i; i < GetMaxPlayers(); i ++)
    {
        if(IsPlayerInVehicle(i, j))
        {
            Veiculo[j] = true;
                break;
        }
    }
    if(!Veiculo[j])
        SetVehicleToRespawn(j);
}
}
em baixo do SendClientMessage(playerid, -1, str);
Reply


Messages In This Thread
Comando Resetar veiculos sem Uso - by M4h4V4ilo - 29.03.2015, 16:21
Re: Comando Resetar veiculos sem Uso - by ViictorDaay- - 29.03.2015, 16:35
Re: Comando Resetar veiculos sem Uso - by M4h4V4ilo - 29.03.2015, 16:39
Re: Comando Resetar veiculos sem Uso - by ipsLuan - 29.03.2015, 16:50
Re: Comando Resetar veiculos sem Uso - by ViictorDaay- - 29.03.2015, 16:51
Re: Comando Resetar veiculos sem Uso - by LockedLucas - 29.03.2015, 16:52
Re: Comando Resetar veiculos sem Uso - by M4h4V4ilo - 29.03.2015, 17:04
Re: Comando Resetar veiculos sem Uso - by ViictorDaay- - 29.03.2015, 17:07
Re: Comando Resetar veiculos sem Uso - by M4h4V4ilo - 29.03.2015, 17:12
Re: Comando Resetar veiculos sem Uso - by LockedLucas - 29.03.2015, 17:13

Forum Jump:


Users browsing this thread: 5 Guest(s)