Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

RMVX Max-Level Cap decrease!

Hi.
I just wonder.. how do i decrease the maximum level of a character?
In RMVX, i can only find the starting level option of a character, but not the maximum level like the RMXP has.
Is there any sort of ways to overcome this obstacle with any simple scripting changes or anything? I'd really like to decrease the maximum level to 50 or 70.
Thanks :)

P.S Is it also possible to configure the exp yourself =P? I mean like, when you choose how fast the character should level up, there is no way you (i) can change the numbers. I really want to be able to change it (the numbers of how much exp needed to lvl up or reach a certain level). Thanks once again :)
 
well this is where you go to make your lvl cap

Capture.jpg



=========
edit sorry wrong one wasnt paying attention
 
This little script should work, just change MAX_LEVEL with the max level you want.
Code:
MAX_LEVEL = 99

 

class Game_Actor

  def make_exp_list

    @exp_list[1] = @exp_list[MAX_LEVEL + 1] = 0

    m = actor.exp_basis

    n = 0.75 + actor.exp_inflation / 200.0;

    for i in 2..MAX_LEVEL

      @exp_list[i] = @exp_list[i-1] + Integer(m)

      m *= 1 + n;

      n *= 0.9;

    end

  end

end

P.S Is it also possible to configure the exp yourself =P? I mean like, when you choose how fast the character should level up, there is no way you (i) can change the numbers. I really want to be able to change it (the numbers of how much exp needed to lvl up or reach a certain level). Thanks once again :)
Yes, you can via scripting. If you want you can change the formula for making the exp list, it is listed in the script I posted above, and you can set also number per number if you want.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top