PDA

View Full Version : How does the SCORE CALCULATION FORMULA work?


Jamers
10-20-2008, 03:52 AM
It says on the records screen something like:
Record=100+max(1,100-Game days)*Game Difficulty (1..4)
Hero level and quests completed: +2%

I've tried plugging in the numbers (w/o the +2% bonus) on the stats of the scores already in the top ten (programmers or just BS records or whatever) and nothing even comes close to their final scores. :confused:

Anyone know how this actually works? Is there a typo in the formula? The game is riddled with them due to sloppy translation.

Thanks!

monkeydog
10-23-2008, 04:49 PM
Final Score = (100+(100-Days)*Diff)*(1+0.02*(HeroLevel+Quests))

Where:
Diff = 1,2,3,4 (Easy, Normal, Hard, Impossible)
Also, if it takes more than 99 days to complete a game, replace (100-Days) with 1.
If final score isn't an integer, round it down.