Player's Money Is Their Score?
#2

From the lvdm ....
Say thanks to Jax

pawn Код:
forward MoneyGrubScoreUpdate();

new CashScoreOld;

public MoneyGrubScoreUpdate()
{
    new CashScore;
    new name[MAX_PLAYER_NAME];
    //new string[256];
    for(new i=0; i<MAX_PLAYERS; i++)
    {
        if (IsPlayerConnected(i))
        {
            GetPlayerName(i, name, sizeof(name));
            CashScore = GetPlayerMoney(i);
            SetPlayerScore(i, CashScore);
            if (CashScore > CashScoreOld)
            {
                CashScoreOld = CashScore;
                //format(string, sizeof(string), "$$$ %s is now in the lead $$$", name);
                //SendClientMessageToAll(COLOR_YELLOW, string);
            }
        }
    }
}
Reply


Messages In This Thread
Player's Money Is Their Score? - by DeltaAirlines12 - 20.09.2009, 15:26
Re: Player's Money Is Their Score? - by » sTeVe - 20.09.2009, 15:27
Re: Player's Money Is Their Score? - by DeltaAirlines12 - 20.09.2009, 15:40

Forum Jump:


Users browsing this thread: 1 Guest(s)