Hey there.
Currently I'm making an experience system. I calculated the exp needed from level 1 to 10, but now I want to make it from 1 to 40, but I forgot the formula I used.
Could someone help me with finding out which formula I used here? I think I'm in the middle of something like a blackout hehe.
X = the hero's level. If X = 1, then it means the hero needs 125 experience to get from level 1 to 2.
Y = the amount of experience needed.
Y' = 250 * (X-1) = 250X - 250
Hmm so far I didn't get much further.
Currently I'm making an experience system. I calculated the exp needed from level 1 to 10, but now I want to make it from 1 to 40, but I forgot the formula I used.
Could someone help me with finding out which formula I used here? I think I'm in the middle of something like a blackout hehe.
JASS:
X Y Y'
1. 125 0
2. 375 250
3. 875 500
4. 1625 750
5. 2625 1000
6. 3875 1250
7. 5375 1500
8. 7125 1750
9. 9125 2000
10. 11375 2250
X = the hero's level. If X = 1, then it means the hero needs 125 experience to get from level 1 to 2.
Y = the amount of experience needed.
Y' = 250 * (X-1) = 250X - 250
Hmm so far I didn't get much further.