http://rpg.hamsterrepublic.com/ohrrpgce ... evel_up%3F
Doesn't seem to be working for me, here's my Python code I'm using to attempt to figure out a stats on a specific level:
Code: Select all
$ python -c "import math; level, a0, a99 = 5, 0, 1000; print math.floor((.8 + level / 50) * level * ((a99 - a0) / 275.222) + a0 + .1 )"
14.0
Code: Select all
$ python -c "import math; level, a0, a99 = 99, 0, 1000; print math.floor((.8 + level / 50) * level * ((a99 - a0) / 275.222) + a0 + .1 )"
647.0
I don't mean to complain so much, but I really want to release this game with proper hero stats(or save games will break if I update it in the future).