[ajuda] Rank Dialog
#2

pawn Код:
stock TopPlayersOnline(playerid)
{
    new string[256];
    while(Percorrido < 10) {
        for(new i; i < 500; i++)  if(IsPlayerConnected(i)) {
            if(GetPlayerScore(i) > Valor_Maximo[Percorrido] && TopFoi[i] == false) {
                GetPlayerName(i,PlayerMelhor[Percorrido],24);
                Valor_Maximo[Percorrido] = GetPlayerScore(i);
                TopFoi[i] = true;
            }
        }
        Percorrido++;
    }
    for(new a; a < 500; a++)  if(IsPlayerConnected(a)) TopFoi[a] = false;
    Percorrido = 0;
    for(new i; i < 10;i++)
    {
        if(PlayerMelhor[i][0] != EOS)
        {
            format(string ,64,"[%d] - Player: %s | Score: %d",i+1,PlayerMelhor[i],Valor_Maximo[i]);
            ShowPlayerDialog(playerid,9932,DIALOG_STYLE_MSGBOX,"Rank",string,"OK","Sair");
            Valor_Maximo[i] = -1;
        }
    }
}
'-'
Reply


Messages In This Thread
[ajuda] Rank Dialog - by Hancoc - 16.01.2012, 13:10
Re: [ajuda] Rank Dialog - by AleeFerreira - 16.01.2012, 13:16
Re: [ajuda] Rank Dialog - by Hancoc - 16.01.2012, 13:19

Forum Jump:


Users browsing this thread: 1 Guest(s)