[AJUDA] /gmx salvar contas
#1

Quando eu do gmx nгo salva as contas e tambйm quando kicko tambйm nгo salva, sу salva quando o player desconecta.

pawn Код:
CMD:gmx(playerid,params[])
{
        Salvarcontas(playerid);
    SendRconCommand("gmx");
    return 1;
}
Reply
#2

up..
Reply
#3

pawn Код:
CMD:gmx(playerid,params[])
{
    foreach(Player, i)
    {
        Salvarcontas(i);
    }
    SendRconCommand("gmx");
    return 1;
}
Ou...

pawn Код:
CMD:gmx(playerid,params[])
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        Salvarcontas(i);
    }
    SendRconCommand("gmx");
    return 1;
}
Reply
#4

O 1є deu esse erro:

(1203) : error 017: undefined symbol "foreach"
(1205) : error 017: undefined symbol "i"

O 2є nгo salvou =/
Reply
#5

Tenta usar o 2° com GameModeExit();
Reply
#6

Nгo entendi muito bem

vc ta falando pra fazer assim:

pawn Код:
CMD:gmx(playerid,params[])
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GuardarCuenta(i);
    }
    SendRconCommand("gmx");
    GameModeExit();
    return 1;
}
Reply
#7

PHP код:
CMD:gmx(playerid,params[])
{
    for(new 
iMAX_PLAYERSi++)
    {
        
GuardarCuenta(i);
    }
    
SendRconCommand("gmx");
    return 
1;

Reply
#8

Sem o SendRconCommand
Reply
#9

Nгo ta dando de nem uma forma
Reply
#10

e assim
pawn Код:
public OnGameModeExit()
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        if(IsPlayerConnected(i))
        {
            Salvarcontas(i);
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)