Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
tlbearer

EXP Curve Custon

Recommended Posts

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

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

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
  end
end

 

Haven't tested yet, but I think it'll work out eventually.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...