[AJUDA]RESPAWNAR TODOS OS VEICULOS
#1

Boa tarde galera seguinte...
to procurando a 1 tempo jб aqui no Search e nada de encontrar...
oque eu encontrei tentei mexer e nгo funcionou..
tentei criar o meu e tambйm nгo funcionou =/
fiz aqui de 1 modo que o garfiel ensinou
http://forum.sa-mp.com/showthread.ph...espawnar+todos

sу que tambйm nгo funcionou ¬¬
Quote:

C:\Arquivos de programas\Rockstar Games\Gamemode\Gamemode Atual\pawno\Vag.pwn(7303) : warning 202: number of arguments does not match definition
C:\Arquivos de programas\Rockstar Games\Gamemode\Gamemode Atual\pawno\Vag.pwn(8604) : error 017: undefined symbol "string"
C:\Arquivos de programas\Rockstar Games\Gamemode\Gamemode Atual\pawno\Vag.pwn(8604) : error 017: undefined symbol "string"
C:\Arquivos de programas\Rockstar Games\Gamemode\Gamemode Atual\pawno\Vag.pwn(8604) : error 029: invalid expression, assumed zero
C:\Arquivos de programas\Rockstar Games\Gamemode\Gamemode Atual\pawno\Vag.pwn(8604) : fatal error 107: too many error messages on one line

ai o cmd..
Код:
     if(strcmp(cmdtext, "/respawnartodos", true) == 0)
     {
    	ResetarCarros();
		return 1;
     }






stock ResetarCarros(playerid)
{
    format(string, sizeof(string), "[INFO]: O Adminstrador %s Respawnou todos os veiculos", GetPlayerNick(playerid));
    SendClientMessageToAll(0xFFFFFFFF, string);
    new inVeh;
    for( new i = 0; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for( new j = 0; j < SLOTS; j++ )
        {
            if(IsPlayerInVehicle( j, i ))
            {
                inVeh = true;
                break;
            }
        }
        if(inVeh == false)
        {
            SetVehicleToRespawn(i);
        }
    }
Reply
#2

Vк se da em seu Gm
pawn Код:
if(strcmp(cmd, "/respawnarcarros", true) == 0 || strcmp(cmd, "/rcar", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] < /* LEVEL DE ADM */)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo estб autorizado a usar este comando!");
                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 <= 268; car++)
            {
                if(!unwanted[car]) SetVehicleToRespawn(car);
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            format(string, sizeof(string), "|ADMIN|: Veнculos Inutilizados resetados por %s !", sendername);
            BroadCast(COLOR_YELLOW,string);
        }
        return 1;
    }
Espero ter ajudado.
Reply
#3

pawn Код:
stock ResetarCarros(playerid)
{
    new string[128],
    nome[MAX_PLAYERS];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, sizeof(string), "[INFO]: O Adminstrador %s Respawnou todos os veiculos", name);
    SendClientMessageToAll(0xFFFFFFFF, string);
    new inVeh;
    for( new i = 0; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for( new j = 0; j < SLOTS; j++ )
        {
            if(IsPlayerInVehicle( j, i ))
            {
                inVeh = true;
                break;
            }
        }
        if(inVeh == false)
        {
            SetVehicleToRespawn(i);
        }
    }
}
Creio Eu Que Pegue.
Reply
#4

Corrigido:
pawn Код:
if(strcmp(cmdtext, "/respawnartodos", true) == 0)
{
    ResetarCarros(playerid);
    return 1;
}

stock ResetarCarros(playerid)
{
    new string[128];
    GetPlayerName(playerid, string, MAX_PLAYER_NAME);
    format(string, sizeof(string), "[INFO]: O Adminstrador %s Respawnou todos os veiculos", string);
    SendClientMessageToAll(0xFFFFFFFF, string);
    new bool:inVeh;
    for( new i = 0; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for( new j = 0; j < MAX_PLAYERS; j++ )
        {
            if(IsPlayerInVehicle( j, i ))
            {
                inVeh = true;
            }
        }
        if(!inVeh) SetVehicleToRespawn(i);
    }
    return true;
}
PS: Nгo tinha visto os outros posts.
Reply
#5

Muito BOm Jon
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)