tlbearer 1 Report post Posted June 2, 2015 I want a script that will allow the exp needed for each level to be 1000. Share this post Link to post Share on other sites
black mage 28 Report post Posted June 3, 2015 Try this : http://rpgmaker.net/scripts/56/ Hope it works. :) Share this post Link to post Share on other sites
tlbearer 1 Report post Posted June 3, 2015 I looked it over and my thing is that I just want it to always be 1000 exp to level up. Share this post Link to post Share on other sites
black mage 28 Report post Posted June 3, 2015 My bad. I thought that you want to exceed the level limit. Try putting this above the main script : class Game_Actor < Game_Battler def exp_for_level(level) return (level-1)*1000 endend Haven't tested yet, but I think it'll work out eventually. Share this post Link to post Share on other sites