''Exp-free'' Status screen

● ARCHIVED · READ-ONLY
Started by CrazyCrab 3 posts View original ↗
  1. Hi everyone,

    my game has an alternative leveling system where the player. instead of gaining experience from combat, receives items that can in turn be used to get stronger, get new skills etc.

    When the enemies have 0 exp there is no ''you gained 0 exp points'' after combat so that's alright, but when you go to the status screen you can see your current experience as well as experience to the the next level.

    Is there a way to get rid of this without heavy scripting? Perhaps some setting that I missed or a minor change somewhere?

    I want to keep the level on the main screen, as I'm using it as a ''rank'' so that's not a problem.

    Thanks a lot!
  2. Try adding this script snippet:

    Code:
    class Window_Status < Window_Selectable  def draw_block2(y)    draw_actor_face(@actor, 8, y)    draw_basic_info(136, y)  endend
  3. Titanhex said:
    Try adding this script snippet:

    class Window_Status < Window_Selectable  def draw_block2(y)    draw_actor_face(@actor, 8, y)    draw_basic_info(136, y)  endend
    Perfect, thank you!  :)