- Joined
- Aug 8, 2012
- Messages
- 921
- Reaction score
- 134
- First Language
- english
- Primarily Uses
- RMMV
It's not a bug with my plugin then. Copy paste the formulas inside of the helpfile:
<Custom Class Parameters>
maxhp = level * 30 + 300;
maxmp = level * 20 + 150;
atk = level * 15 + 15;
def = level * 11 + 16;
mat = level * 12 + 14;
mdf = level * 10 + 13;
agi = level * 14 + 15;
luk = level * 13 + 12;
exp = level * 100;
</Custom Class Parameters>
Those are giving me absolutely zero problems. You'll have to find a solution with the creator of that plugin. If you can't come up with a solution, then this plugin isn't the right one for you.
yep it was a mistake of other plug in.... even though it said it can be used in any formula the plug in was not yet finished and the creator released it early
but if i'm right
<Custom Class Parameters>
maxhp = (level - 1) * 45 + 285;
maxmp = (level - 1) * 5 + 15;
atk = (level - 1) * 5 + 4;
def = (level - 1) * 4 + 3;
mat = (level - 1) * 5 + 4;
mdf = (level - 1) * 8 + 6;
agi = (level - 1) * 3 + 2;
luk = (level - 1) * 3 + 2;
exp = level * 1000;
</Custom Class Parameters>
should work so that lvl 1 stats will be hp 285, mp 15, atk 4, def 3, mat 4, mdf 6, agi 2, luck 2 correct?
Last edited by a moderator:

