Difference between revisions of "Score"

From CrawlWiki
Jump to: navigation, search
m (verified for 0.13.1)
(Update to 0.22.)
Line 1: Line 1:
{{version013}}
+
{{version022}}
 
Your '''score''' is determined at the end of the game, win or lose. It is then recorded for posterity on the high score table (along with your [[species]], [[background]], character level, [[Dungeon]] level, and cause of death).
 
Your '''score''' is determined at the end of the game, win or lose. It is then recorded for posterity on the high score table (along with your [[species]], [[background]], character level, [[Dungeon]] level, and cause of death).
  
 
==Score Calculation==
 
==Score Calculation==
Your final score is based on these factors.
+
Your final score is based on three factors:
*Total [[experience]].
+
*The total amount of [[experience]] you collected.
*Amount of [[gold]] you are carrying.
+
*The number of [[rune]]s you collected.
*Number of [[rune]]s collected.
+
*If you escaped with the [[Orb of Zot]], the number of [[turn]]s your game took.
*Number of [[turn]]s taken (only if you escaped with the [[orb of Zot]]).
 
*Total Points are capped at 99,999,999.  
 
  
 
==Experience Score==
 
==Experience Score==
 
The amount of points added based on your XP is not capped, but has diminishing returns, eventually only giving 10% after 3 million exp:
 
The amount of points added based on your XP is not capped, but has diminishing returns, eventually only giving 10% after 3 million exp:
*175,000 points at 250k exp
+
* <code>0.7 * experience points</code> for the first 250,000 experience points;
*475,000 points at 1mil exp
+
* <code>0.4 * experience points</code> for the next 750,000 experience points (up to 1,000,000);
*875,000 points at 3mil exp
+
* <code>0.2 * experience points</code> for the next 2,000,000 experience points (up to 3,000,000);
*10% of exp after 3mil is added to points
+
* <code>0.1 * experience points</code> thereafter.
  
Examples:
+
See the [[XL]] article for how experience points correlate with experience level.
*250,000 XP is level 19 for a Human, or level 17 for a race with 150% experience requirement.
 
*750,000 XP is level 26 for a Human, or level 23 for a race with 150% experience requirement.
 
  
 
Note that you still gain experience after reaching level 27, up to about 9 million XP. This is a minor part of the total score for a winning game, usually less than 10%. However, in a non-winning game, it usually accounts for the majority of the total score.
 
Note that you still gain experience after reaching level 27, up to about 9 million XP. This is a minor part of the total score for a winning game, usually less than 10%. However, in a non-winning game, it usually accounts for the majority of the total score.
  
==Gold Score==
+
==Runes and Turns==
Since the amount of gold you have is not multiplied by anything before being added to your score, this is a very small percentage (<1%) of the total score. This is capped at 1,000,000.
+
Firstly, you get <code>10,000 * number of runes + 1,000 * number of runes * (number of runes + 2)</code> points, regardless of whether you won.
  
==Rune Bonus==
+
In addition to the above, if you escape with the [[Orb of Zot]], you get 254,000 points for the Orb and an additional 2,000 points for each Rune.
You get 10,000 points per rune and then 1,000 points * number of runes * (number of runes + 2)
 
  
In addition to the above, if you escape with the [[Orb of Zot]], you get 250,000 points for the Orb and 2,000 points for each Rune, plus an additional 4,000.
+
If you escape with the Orb, you then get a bonus of <code> 6,250,000,000 * number of runes^2 / turns</code>. This is where the vast majority of points come from, and is the reason why it is best to complete games as quickly as possible with as many runes as possible if one wishes to maximise their score.
 
 
This is a minor part of the total score, usually less than 5-10%, but the number of runes you have also affects the turn bonus.
 
 
 
==Number of Turns==
 
If you escape with the Orb, you get a bonus of 6,250,000,000*(runes^2)/turns. This is where the vast majority of points come from, and is the reason why it is best to complete games as quickly as possible with as many runes as possible in order to maximize score.
 
  
 
Assuming you grabbed all 15 runes:  
 
Assuming you grabbed all 15 runes:  
Line 47: Line 37:
 
*5,625,000 points at 250k turns
 
*5,625,000 points at 250k turns
 
*4,687,500 points at 300k turns
 
*4,687,500 points at 300k turns
 +
 +
==Highest scores online==
 +
The high scores list can be found [http://crawl.akrasiac.org/scoring/top-N.html here].
 +
 +
The current highest score is held by Yermak, playing as a [[Gnoll]] [[Necromancer]] of [[Cheibriados]] and winning with 15 runes in version [[0.21.2]] in 15,429 turns. This game was played on January 2–3, 2019.
  
 
[[Category:Game mechanics]]
 
[[Category:Game mechanics]]

Revision as of 18:32, 23 January 2019

Version 0.22: This article may not be up to date for the latest stable release of Crawl.

Your score is determined at the end of the game, win or lose. It is then recorded for posterity on the high score table (along with your species, background, character level, Dungeon level, and cause of death).

Score Calculation

Your final score is based on three factors:

  • The total amount of experience you collected.
  • The number of runes you collected.
  • If you escaped with the Orb of Zot, the number of turns your game took.

Experience Score

The amount of points added based on your XP is not capped, but has diminishing returns, eventually only giving 10% after 3 million exp:

  • 0.7 * experience points for the first 250,000 experience points;
  • 0.4 * experience points for the next 750,000 experience points (up to 1,000,000);
  • 0.2 * experience points for the next 2,000,000 experience points (up to 3,000,000);
  • 0.1 * experience points thereafter.

See the XL article for how experience points correlate with experience level.

Note that you still gain experience after reaching level 27, up to about 9 million XP. This is a minor part of the total score for a winning game, usually less than 10%. However, in a non-winning game, it usually accounts for the majority of the total score.

Runes and Turns

Firstly, you get 10,000 * number of runes + 1,000 * number of runes * (number of runes + 2) points, regardless of whether you won.

In addition to the above, if you escape with the Orb of Zot, you get 254,000 points for the Orb and an additional 2,000 points for each Rune.

If you escape with the Orb, you then get a bonus of 6,250,000,000 * number of runes^2 / turns. This is where the vast majority of points come from, and is the reason why it is best to complete games as quickly as possible with as many runes as possible if one wishes to maximise their score.

Assuming you grabbed all 15 runes:

  • 70,312,500 points at 20k turns
  • 56,250,000 points at 25k turns
  • 28,125,000 points at 50k turns
  • 18,175,000 points at 75k turns
  • 14,062,500 points at 100k turns
  • 11,250,000 points at 125k turns
  • 9,375,000 points at 150k turns
  • 7,031,250 points at 200k turns
  • 5,625,000 points at 250k turns
  • 4,687,500 points at 300k turns

Highest scores online

The high scores list can be found here.

The current highest score is held by Yermak, playing as a Gnoll Necromancer of Cheibriados and winning with 15 runes in version 0.21.2 in 15,429 turns. This game was played on January 2–3, 2019.