[ajuda] Rank Dialog
#1

Galera eu queria ajuda de vcs, quando o player digitase /rankscore aparese em dialog por favor alguem pode ajuda

pawn Код:
#include <a_samp>
#define SLOTS 500
new
bool:TopFoi[SLOTS],
Valor_Maximo[10] = -1,
PlayerMelhor[10][24],
Percorrido
;
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/rankScore", true))
        {
        TopPlayersOnline(playerid);
               return 1;}

         return 1;
}
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]);
            SendClientMessage(playerid,0x88FF9FAA,string);
            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)