the richest guys in the server?
#6

Quote:
Originally Posted by nemesis-
Посмотреть сообщение
pawn Код:
stock GetRichestPlayer()
{
    new maxc,maxpid,tcs;

    for(new a=0; a<MAX_PLAYERS; a++)
    {
        if(!IsPlayerConnected(a)) continue;
        tcs = GetPlayerMoney(a);
        if(tsc > maxc)
        {
            maxpid = a;
            maxc = tsc;
        }
    }
    return maxpid;
}
1 loop > 2 loops.
Why so many variables?

pawn Код:
stock GetRichestPlayer()
{
    new richestplayer = INVALID_PLAYER_ID;

    for(new playerid; playerid < MAX_PLAYERS; playerid++)
    {
        if(IsPlayerConnected(playerid))
        {
            if(richestplayer != INVALID_PLAYER_ID)
            {
                if(GetPlayerMoney(richestplayer) < GetPlayerMoney(playerid))
                {
                    richestplayer = playerid;
                }
            }
            else
            {
                richestplayer = playerid;
            }
        }
    }

    return richestplayer;
}
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)