TDW Experience Curve Customization
Version 1.0
by wrigty12
[For RPGMaker MZ]​
Description:
Define and set custom experience curves for individual classes, using JS Code instead of the default EXP Curve Generator!
Functionality:
You can compose a list of different EXP Curves. Then, you link each Class to any of your defined EXP Curves.
Everything is built out in the Plugin Parameters.
Some example defaults (you may recognize them from a certain monster-catching game):
n = actor level
Code:
(6/5)*Math.pow(n,3) - 15*Math.pow(n,2) + 100*n - 140;
Code:
if (n <= 50) { (Math.pow(n,3)*(100-n))/50 }
else if (n <= 68) { (Math.pow(n,3)*(150-n))/100 }
else if (n <= 98) { (Math.pow(n,3)*((1911-10n)/3))/50 }
else if (n <= 100) { (Math.pow(n,3)*(160-n))/100 };
Plugin:
TDW Experience Curve Customization by wrigty12
Credits:
wrigty12
Terms:
Feel free to use in any way you like. No credit required, unless you feel like it!
Credits: wrigty12 Terms: Feel free to use in any way you like. No credit required, unless you feel like it!