EOSERV Forum > EOSERV > Xp/tnl past level 100?
Page: << 1 >>
Xp/tnl past level 100?
Author Message
Post #204332 Xp/tnl past level 100?

Does anyone know xp required per level after 100? Ive used http://eomix.blogspot.com/2014/02/endless-online-exp-chart-by-blargz.html?m=1 to see up to level 100 but ive searched forever and cant find a guid that shows beyond. Mainly want to know because of rebirth system requiring level 200+

5 years, 34 weeks ago
Post #204348 Re: Xp/tnl past level 100?

Here's the source code for the exp table:

std::array<int, 254> exp_table;

  1. exp_table[0] = 0;
  2.     for (std::size_t i = 1; i < this->exp_table.size(); ++i)
  3.     {
  4.         exp_table[i] = int(util::round(std::pow(double(i), 3.0) * 133.1));
  5.     }
---
I not hacker

“Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its
whole life believing that it is stupid.” - Albert Einstein : Really Great Quote Ramy!
5 years, 33 weeks ago
Post #204349 Re: Xp/tnl past level 100?

here you go, I got google sheets to generate 1000 levels for you https://docs.google.com/spreadsheets/d/1FebRH98BhkLnnvdCCGYpqnRU9mNLzPf2SuF9VJ_XGxY/edit?usp=sharing

---
If money doesn't grow on trees, then why do banks have branches?
5 years, 33 weeks ago
Post #204350 Re: Xp/tnl past level 100?

Thanks guys, helps alot :)

5 years, 33 weeks ago
Post #204351 Re: Xp/tnl past level 100?

It is literally just (level)^3 * 133.1. If you are using a PC or smartphone there are calculator apps to finish the formula up to whatever level you can imagine, not that EOSERV or the EO client actually supports infinity. 

5 years, 32 weeks ago
Page: << 1 >>

EOSERV Forum > EOSERV > Xp/tnl past level 100?