[Pedido] Este Comando Mais Rapido
#10

Sei lб, tenta isto

pawn Код:
COMMAND:rc(playerid, params[])
{
    if (APlayerData[playerid][PlayerLevel] >= 2) {

    SendClientMessageToAll(0x00FF00FF, "{808080}Todos os veiculos foram resetados pelo Administrador.");

    for(new i; i < MAX_VEHICLES; i++)
    {
        if(!IsVehicleInUse(i)){

            SetVehicleToRespawn(i);

        }
    }
    return 1;
}

stock IsVehicleInUse(vehicleid)
{
    static
        max_,
        i
    ;

    for(max_ = GetMaxPlayers(), i = 0; i != max_; ++i)
    {
        if(GetPlayerVehicleID(i) == vehicleid)
            return true;

        if(GetVehicleTrailer(GetPlayerVehicleID(i)) == vehicleid)
            return true;
    }
    return false;
}
Reply


Messages In This Thread
Este Comando Mais Rapido - by giovanehen - 02.02.2014, 21:22
Re : Este Comando Mais Rapido - by ThiagoMK - 02.02.2014, 21:26
Re: Este Comando Mais Rapido - by giovanehen - 02.02.2014, 21:36
Re : Este Comando Mais Rapido - by ThiagoMK - 02.02.2014, 21:42
Re: Este Comando Mais Rapido - by lHesoyaml - 02.02.2014, 21:42
Re: Este Comando Mais Rapido - by kevinho.007 - 02.02.2014, 21:43
Re: Este Comando Mais Rapido - by giovanehen - 02.02.2014, 22:06
Re: Este Comando Mais Rapido - by kevinho.007 - 02.02.2014, 22:30
Re: Este Comando Mais Rapido - by recagonlei - 03.02.2014, 05:29
Re: Este Comando Mais Rapido - by zSuYaNw - 03.02.2014, 06:37

Forum Jump:


Users browsing this thread: 1 Guest(s)