[Pedido] ranking de /ricos
#7

O sistema abaixo apуs vocк usar o comando: /topricos ele irб te mostrar no chat os top 10 players online que tem mais dinheiro no servidor.

° No comeзo do GM:
PHP код:
new
bool:TopFoi[MAX_PLAYERS],
Valor_Maximo[10] = -1,
PlayerMelhor[10][24],
Percorrido

° opcional Comando em zcmd:
PHP код:
CMD:topricos(playerid)
{
    
TopPlayersOnline(playerid);
    return 
1;

° opcional Comando em cmdtext:
PHP код:
if( strcmpcmdtext"/topricos"true ) == )
{
    
TopPlayersOnline(playerid);
    return 
1;

° No final do GM:
PHP код:
stock TopPlayersOnline(playerid)
{
    new 
string[255];
    while(
Percorrido 10) {
        for(new 
i500i++)  if(IsPlayerConnected(i)) {
            if(
GetPlayerMoney(i) > Valor_Maximo[Percorrido] && TopFoi[i] == false) {
                
GetPlayerName(i,PlayerMelhor[Percorrido],24);
                
Valor_Maximo[Percorrido] = GetPlayerMoney(i);
                
TopFoi[i] = true;
            }
        }
        
Percorrido++;
    }
    for(new 
a500a++)  if(IsPlayerConnected(a)) TopFoi[a] = false;
    
Percorrido 0;
    for(new 
i10;i++) {
        if(
PlayerMelhor[i][0] != EOS) {
            
format(stringsizeof(string),"{00EE76}%d° Lugar - Player: %s | Dinheiro: %d",i+1,PlayerMelhor[i],Valor_Maximo[i]);
            
SendClientMessage(playerid,0xC9170EFF,string);
            
Valor_Maximo[i] = -1;
        }
    }

Crйditos:
Criado por [FeK]DraKiNs | Projeto [FeK]Squad
Reply


Messages In This Thread
ranking de /ricos - by chefaoBR - 14.12.2014, 02:18
Re: ranking de /ricos - by Bruno13 - 14.12.2014, 02:52
Re: ranking de /ricos - by Ts3 - 14.12.2014, 05:25
Re: ranking de /ricos - by Pablo098 - 14.12.2014, 05:35
Re: ranking de /ricos - by Bruno13 - 14.12.2014, 08:40
Re: ranking de /ricos - by paulotuto - 14.12.2014, 14:52
Re: ranking de /ricos - by [BOPE]Seu._.Madruga - 14.12.2014, 15:38
Re: ranking de /ricos - by [BOPE]Seu._.Madruga - 14.12.2014, 15:40
Re: ranking de /ricos - by paulotuto - 14.12.2014, 15:43
Re: ranking de /ricos - by [BOPE]Seu._.Madruga - 14.12.2014, 15:56

Forum Jump:


Users browsing this thread: 1 Guest(s)