Editing Talk:Experience

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
47 requires 660,881 xp <br>
47 requires 660,881 xp <br>
48 requires 690,847 xp <br>
49 requires 721,396 xp <br>
50 requires 752,539 xp <br>
51 requires 784,287 xp <br>


48 requires 690,847 xp

<br>
<br>
<br>
knowledge xp boost<br>
4542 xp @ level 21
<br>
7638 xp @ level 48<br>
7786 xp @ level 49<br>
7938 xp @ level 50<br>
8092 xp @ level 51


Following formula to calculate experience points works for levels 0 - 6:

LEVEL * 500 + (15 * LEVEL * (LEVEL - 1) / 2)

For levels 5 and 6, following formula is added:

(LEVEL - 4) ^ 2

C# code snippet:
int baseLevel = 500 * level;
int triangularNumberSequenceModifier = 15 * level * (level - 1) / 2;
int squareModifier = level - 4 > 0 ? (int)Math.Pow(level - 4, 2) : 0;

return baseLevel + triangularNumberSequenceModifier + squareModifier;
This stops working after level 6.


== Levels after 20 ==

I haven't fully figured out the formula, but from level 20 to 125 the following formula gives the right xp required to level up, except at levels 37, 66, 122 where it is off by one xp:

11892.02398*1.01944069233047^LEVEL, rounded to the nearest integer [[User:1ceviper|1ceviper]] ([[User talk:1ceviper|talk]]) 21:07, 9 November 2024 (UTC)

== Graphs -DoubleLogarithmic ==

I don't know what software was used to create the graphs. However, a more useful graph might be a (LogX,LogY) chart instead of the (X,LogY) as this would also capture the jumps in XP required at level 5, 12 and 20

[[User:Lorentari|Lorentari]] ([[User talk:Lorentari|talk]]) 10:55, 19 November 2024 (UTC)
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)