03.11.2010, 23:38
Thank you for taking the time to view this topic. In my script that I have downloaded, it appears that the players level is their score. I would like to change this from the score to how many minutes they have been online. If anyone knows how to do this, please let me know. Anything with // is not in the script, and is a comment I have made to you.
Код:
public DollahScoreUpdate() //< forward DollahScoreUpdate();
{
new LevScore;
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
LevScore = PlayerInfo[i][pLevel];
SetPlayerScore(i, LevScore);
}
}
return 1;
}

