[General] Gameplay Constants - Hero EXP Table Problem!

Status
Not open for further replies.
Level 20
Joined
Jul 12, 2010
Messages
1,737
Hello everybody I need a little help with the Hero Exp Tables.

I have read Gameplay Constants - Hero Experience but it didn't really help!

exptable1-png.262590

What I want to do is make the Heroes require 100 exp for every level so it's the same value for every level.

The point of this is because the Hero exp is supposed to be displayed in percentages (%) when you hover over the exp bar of the hero
exptable2-png.262591


I have tried many different values but I just can't seem to find it =/
exptable3-png.262592
 
Level 23
Joined
Jan 1, 2009
Messages
1,617
You have quoted the formula, so why don't you use it?
Code:
"Previous value" * "Previous value factor" + "Level" * "Level factor" * "constant factor"
Now we try to insert your attempts:
Code:
"Previous value" * 0 + "Level" * 0 * 0 = 0
Code:
0 * 1 + "Level" * 100 * 0 = 0
Code:
"Previous value" * 0 + "Level" * 0 * 100 = 0

Each of these will return 0 for the next levels. So maybe look at the formula again and find what you need to change.
It should always return 100.
 
Status
Not open for further replies.
Top