HLstatsX Community Edition
  • Contents
  • Search
  • SourceBans
  • Forum
  • Help

  Questions

  1. How are players tracked? Or, why is my name listed more than once?
  2. How is the "points" rating calculated?
  3. What are all the weapon points modifiers?
  4. How can I set my real name, e-mail address, and homepage?
  5. My rank is embarrassing. How can I opt out?
  Answers

1. How are players tracked? Or, why is my name listed more than once?



Players are tracked by Unique ID. Your Unique ID is the last two sections of your Steam ID (X:XXXX).

A player may have more than one name. On the Player Rankings pages, players are shown with the most recent name they used in the game. If you click on a player's name, the Player Details page will show you a list of all other names that this player uses, if any, under the Aliases section (if the player has not used any other names, the Aliases section will not be displayed).

Your name may be listed more than once if somebody else (with a different Unique ID) uses the same name.

You can use the Search function to find a player by name or Unique ID.

2. How is the "points" rating calculated?



A new player has 1000 points. Every time you make a kill, you gain a certain amount of points depending on a) the victim's points rating, and b) the weapon you used. If you kill someone with a higher points rating than you, then you gain more points than if you kill someone with a lower points rating than you. Therefore, killing newbies will not get you as far as killing the #1 player. And if you kill someone with your knife, you gain more points than if you kill them with a rifle, for example.

When you are killed, you lose a certain amount of points, which again depends on the points rating of your killer and the weapon they used (you don't lose as many points for being killed by the #1 player with a rifle than you do for being killed by a low ranked player with a knife). This makes moving up the rankings easier, but makes staying in the top spots harder.

Specifically, the equations are:

 Killer Points = Killer Points + (Victim Points / Killer Points)
				 × Weapon Modifier × 5

 Victim Points = Victim Points - (Victim Points / Killer Points)
				 × Weapon Modifier × 5


Plus, the following point bonuses are available for completing objectives in some games:

ERROR
Database Error

Server Address: localhost
Server Username: xnbueslu_stats_uber1337

Error Diagnostic:
Bad query.

Server Error: (1146) Table 'xnbueslu_stats_uber1337.hlstats_Teams' doesn't exist

Last SQL Query:
					SELECT
						hlstats_Games.name AS gamename,
						hlstats_Actions.description,
						IF(SIGN(hlstats_Actions.reward_player) > 0, CONCAT('+', hlstats_Actions.reward_player), hlstats_Actions.reward_player) AS s_reward_player,
						IF(hlstats_Actions.team != '' AND hlstats_Actions.reward_team != 0,
						IF(SIGN(hlstats_Actions.reward_team) >= 0, CONCAT(hlstats_Teams.name, ' +', hlstats_Actions.reward_team), CONCAT(hlstats_Teams.name, ' ', hlstats_Actions.reward_team)), '') AS s_reward_team,
						IF(for_PlayerActions='1', 'Yes', 'No') AS for_PlayerActions,
						IF(for_PlayerPlayerActions='1', 'Yes', 'No') AS for_PlayerPlayerActions,
						IF(for_TeamActions='1', 'Yes', 'No') AS for_TeamActions,
						IF(for_WorldActions='1', 'Yes', 'No') AS for_WorldActions
					FROM
						hlstats_Actions
					INNER JOIN
						hlstats_Games
					ON
						hlstats_Games.code = hlstats_Actions.game
						AND hlstats_Games.hidden = '0'
					LEFT JOIN
						hlstats_Teams
					ON
						hlstats_Teams.code = hlstats_Actions.team
						AND hlstats_Teams.game = hlstats_Actions.game
					ORDER BY
						hlstats_Actions.game ASC,
						description asc,
						s_reward_player asc