hi,
i was wondering if any one knew how to make stat points dynamic as in they level up with you,
i hate the idea of them being static exp in later levels
does any one know how this could be done?
thank you !
Joined: 02/10/2008 20:00:40
Messages: 526
Location: Hood River, OR
Offline
Are you asking about stat points or exp points?
stat points per level is a flat rate. (PointsPerLevel) It can't be dependent on the current player level unless you rewrite the rpg mutator
The exp tables can be configured a couple of different ways.
first you have your Levels table. This lets you set each levels required exp manually.
once a player exceeds that last table entry, the InfiniteReqEXP settings take over.
If InfiniteReqEXPOp=0:
exp required = previous exp required+InfiniteReqEXPValue
If InfiniteReqEXPOp=1:
exp required = previous exp required*(1+.01*InfiniteReqEXPValue)
---------
If your goal is to make stat points dynamic, you may want to just adjust the exp tables for higher levels to allow them to level more or less frequently