[ajuda] Respawn
#2

o problema nao e necessariamente no new nome,mais sim na linha logo acima,veja:
pawn Код:
...
                if(IsPlayerInAnyVehicle(i))
                    new nome[MAX_PLAYER_NAME]; //aki
...
e perceba que voce nem abriu uma chave para esse if,entao o certo seria:
pawn Код:
if(strcmp(cmd, "/rc", true) == 0)
    {
        if(IsPlayerAdmin(playerid));
        {
            for(new i = 0; i <= MAX_PLAYERS; i++)
            {
                if(IsPlayerInAnyVehicle(i))
                {
                    new nome[MAX_PLAYER_NAME]; //aki
                    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++)
                    {
                        SetVehicleToRespawn(v);
                    }
            }   }
        }
        return 1;
    }
Reply


Messages In This Thread
[ajuda] Respawn - by Cristhian - 11.10.2011, 23:56
Re: [ajuda] Respawn - by Dolby - 12.10.2011, 00:02
Re: [ajuda] Respawn - by [O.z]Caroline - 12.10.2011, 00:05
Re: [ajuda] Respawn - by Cristhian - 12.10.2011, 00:58
Re: [ajuda] Respawn - by Lipe_Stronda - 12.10.2011, 01:12

Forum Jump:


Users browsing this thread: 2 Guest(s)