Hi, I've a project that uses the formula Level = floor(( Experience / 60 ) ^ ( 1 / scale )) to calculate a user's level. So if their experience is 5931 and the scale is 2, Level = floor(( 5931 / 60 ) ^ ( 1 / 2 )) = 9.
So, now I know Level = 9, but this is the part I cannot figure out; how can I determine the absolute minimum experience it would take to be level 9? I figured out that 4860 is the absolute minimum experience for level 9, but what would the formula to determine this be so allowing me to simply plug in the level and get the minimum experience for that level?
Edit:
My solution is 60 * Level ^ scale.
Problem solved.
So, now I know Level = 9, but this is the part I cannot figure out; how can I determine the absolute minimum experience it would take to be level 9? I figured out that 4860 is the absolute minimum experience for level 9, but what would the formula to determine this be so allowing me to simply plug in the level and get the minimum experience for that level?
Edit:
My solution is 60 * Level ^ scale.
Problem solved.
Last edited: