Score!
#2

You mean like this ?

pawn Код:
public OnGameModeInit()
{
    SetTimer("ResetScore",1000,true); // Set a timer to reset the score at each second.
}

forward ResetScore(); public ResetScore()
{
    for (new i = 0; i < MAX_PLAYERS; i++)
    {
         if(IsPlayerConnected(i)) SetPlayerScore(i, 0);
    }
    return 1;
}
Reply


Messages In This Thread
Score! - by Natrens - 04.12.2010, 17:06
Re: Score! - by xxmitsu - 04.12.2010, 17:13
Re: Score! - by Natrens - 04.12.2010, 17:24

Forum Jump:


Users browsing this thread: 1 Guest(s)