ALPHAClosed test. Bugs and wipes may happen. Open beta coming soon.Closed test, beta soon

Experience

The formula the server uses, the level 256 step and everything that multiplies your gain per monster.

Updated on August 10, 2026

The experience you need for each level is not a hand written table: it is a formula the server calculates once at boot and keeps in memory. Knowing the formula explains in one go why level 100 arrives fast, why 250 drags and why from 256 onward the curve becomes something else entirely.

  • 400max level
  • 3,822,148,080total experience 1 to 400
  • 69,195,800the last level alone
  • 256where the curve changes

The formula

The value returned is the accumulated experience to reach that level, not the cost of the level on its own. The cost of one level is the difference between it and the previous one.

if level == 0        ->  0
if level < 256       ->  10 * (level + 8) * (level - 1)^2
if level >= 256      ->  10 * (level + 8) * (level - 1)^2
                         + 1000 * (level - 247) * (level - 256)^2
Experience formula configured on the server (ExperienceFormula field).

Up to level 255 only the first term exists, and it grows roughly with the square of the level. From 256 on the second term kicks in, and it grows with the cube. That is why the cost per level jumps from around 2 million to 4.5 million in a bit over twenty levels, and reaches 69 million on the last one.

The level 256 step

Compare the two halves of the journey. From level 1 to 255 you accumulate 169 million experience. From 256 to 400 you accumulate another 3.65 billion. In other words, the last 145 levels cost more than twenty times what the first 255 cost.

Cost of a single level, in millions of points
  • level 1000,31 M
  • level 2001,22 M
  • level 2551,97 M
  • level 2561,99 M
  • level 2804,46 M
  • level 3009,19 M
  • level 35031,6 M
  • level 40069,2 M

Table by range

Values calculated with the formula above. The middle column is the running total from the start, and the right one is how much that level costs on its own. The full table, level by level, is on the reference page.

LevelAccumulated experienceCost of this level
1014,5803,700
20101,08013,600
30319,58029,500
40730,08051,400
501,392,58079,300
602,367,080113,200
703,713,580153,100
805,492,080199,000
907,762,580250,900
10010,585,080308,800
12018,126,080442,600
14028,595,080600,400
16042,472,080782,200
18060,237,080988,000
20082,370,0801,217,800
220109,351,0801,471,600
240141,660,0801,749,400
255169,677,0801,973,500
256171,666,0001,988,920
280243,190,0804,457,000
300377,963,0809,186,800
320632,784,08016,340,600
3401,056,133,08025,918,400
3601,696,490,08037,920,200
3802,602,335,08052,346,000
4003,822,148,08069,195,800

What multiplies your gain

When you kill a monster, the server starts from that monster's base experience (which already accounts for the gap between its level and your total level) and applies the multipliers, in this order.

  1. 1Monster base experience

    Depends on the monster and on your level gap to it.

  2. 2Server rate

    The global experience multiplier, the same for everyone.

  3. 3Character bonus

    Experience rate stats and temporary bonuses added up.

  4. 4Map multiplier

    Each map has its own, and today they are all at 1.

MultiplierValue todayNote
Global server rate500test value, see the warning below
Map multiplier1 on all 85 mapsno map gives extra experience today
Character bonus1 at the base of every classgoes up with a buff, item or event that grants rate
Partysplits the experience among members in rangeparty caps at 5 players

Party, death and the details nobody tells you

  • A party takes up to 5 players. The monster's experience is split among everyone nearby, so a party only pays off when the group kills faster than the split costs.
  • Dying costs experience. The server takes a slice of your progress, and treats normal level and master level separately: if you are already at 400, the master is the one that pays.
  • When you level up, health, mana, shield and AG go back to maximum for free, and you get that level's stat points (5 per level on the four basic classes, 7 on Magic Gladiator, Dark Lord and Rage Fighter).
  • From level 1 to 400 you get 1,995 stat points on the classes that give 5, and 2,793 on the ones that give 7, not counting the points that come from quests.