Level and Exp system
#9

Quote:
Originally Posted by AnoTek
Посмотреть сообщение
Код:
forward ScoreUpdate();
public ScoreUpdate()
{
	new Score;
	new name[MAX_PLAYER_NAME];
	//new string[256];
	for(new i=0; i<MAX_PLAYERS; i++)
	{
		if (IsPlayerConnected(i))
		{
			GetPlayerName(i, name, sizeof(name));
   			Score = Player[i][pLevel];
			SetPlayerScore(i, Score);
			if (Score > ScoreOld)
			{
				ScoreOld = Score;
			}
		}
	}
}
Why, why, why?

Just use a hook for SetPlayerScore and do the code there, why are using a timer which is completely useless at this case? When you can easily track changed score directly from the script?
Reply


Messages In This Thread
Level and Exp system - by AnoTek - 17.08.2015, 16:51
Re: Level and Exp system - by MichaelJones - 17.08.2015, 16:53
Re: Level and Exp system - by AnoTek - 17.08.2015, 16:56
Re : Level and Exp system - by MrAlexisX2 - 17.08.2015, 17:03
Re: Level and Exp system - by AnoTek - 17.08.2015, 17:08
Re: Re : Level and Exp system - by AnoTek - 17.08.2015, 17:12
Re: Level and Exp system - by DanielMc - 17.08.2015, 17:16
Re : Level and Exp system - by MrAlexisX2 - 17.08.2015, 17:16
Re: Level and Exp system - by Tamer - 17.08.2015, 17:17
Re: Re : Level and Exp system - by AnoTek - 17.08.2015, 17:23

Forum Jump:


Users browsing this thread: 1 Guest(s)