the richest guys in the server?
#4

Here is something better.

pawn Код:
forward GetRichestPlayer();
public GetRichestPlayer()
{
    new Maxed = 0;
    new Player = 0;
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(GetPlayerMoney(i) > Maxed) { Maxed = GetPlayerMoney(i); }
        }
    }
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(GetPlayerMoney(i) == Maxed) { Player = i; }
        }
    }
    return Player;
}
also this can help if want get any other max value from all players
Reply


Messages In This Thread
the richest guys in the server? - by Rocky Balboa - 21.08.2010, 06:41
Re: the richest guys in the server? - by Rocky Balboa - 21.08.2010, 18:39
Re: the richest guys in the server? - by Rocky Balboa - 21.08.2010, 18:46
Re: the richest guys in the server? - by Voldemort - 22.08.2010, 19:03
Re: the richest guys in the server? - by nemesis- - 22.08.2010, 19:44
Re: the richest guys in the server? - by Finn - 22.08.2010, 20:52
Re: the richest guys in the server? - by Sergei - 22.08.2010, 21:05
Re: the richest guys in the server? - by Finn - 22.08.2010, 21:09
Re: the richest guys in the server? - by nemesis- - 22.08.2010, 22:44
Re: the richest guys in the server? - by Sergei - 23.08.2010, 06:18

Forum Jump:


Users browsing this thread: 1 Guest(s)