Help - Search - Members - Calendar
Full Version: Break on through to the other side
RPG RPG Revolution Forums > Game Engines > RPG Maker VX Discussion
yuzippy
Is there any way to change the level cap from 99, to, say, 200? I went into the script editor and changed the part that said level max=99 to 200, but when I make an event that boosted 199 levels, but it automatically changed to 98. Can I make it so this doesn't happen?
BasharTeg6
I'm not an ace scripter, but this might help.

In game_actor, lines 576-584:
CODE
  #--------------------------------------------------------------------------
  # * Change Level
  #     level : new level
  #     show  : Level up display flag
  #--------------------------------------------------------------------------
  def change_level(level, show)
    [b]level = [[level, 99].min, 1].max[/b]   #<--------------RIGHT HERE
    change_exp(@exp_list[level], show)
  end
yuzippy
QUOTE (BasharTeg6 @ Feb 10 2010, 08:30 PM) *
I'm not an ace scripter, but this might help.

In game_actor, lines 576-584:
CODE
  #--------------------------------------------------------------------------
  # * Change Level
  #     level : new level
  #     show  : Level up display flag
  #--------------------------------------------------------------------------
  def change_level(level, show)
    [b]level = [[level, 99].min, 1].max[/b]   #<--------------RIGHT HERE
    change_exp(@exp_list[level], show)
  end


Yah, that is what I changed. But even when I changed it to 200, it still wouldn't let me change it in the database.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.