Main Menu
  • Welcome to The RPG Maker Resource Kit.

[RESOLVED] Removal of Menu Parts

Started by ceegamus, June 19, 2008, 01:02:27 AM

0 Members and 1 Guest are viewing this topic.

ceegamus

Part of Menu Removal
June 18, 2008




Summary
I'd like if someone could take the default menu and remove the parts where it shows the Experience and Level.

Features Desired

  • Removal of Experience and Level from the default menu.

Mockups
Not really needed.

Games its been in

  • If someone does this, it'll be in the game I'm making.




Did you search?
No.  I don't get the feeling that This kind of request would be asked very often.

Where did you search?

  • replace these with
  • None. See above.

What did you search for?

  • Didn't bother.
This is a signature.

&&&&&&&&&&&&&

 :-[
Did you even try to edit it yourself? Post the default script here (I can't use rpg maker) and I'll edit it.
&&&&&&&&&&&&&&&&

ahref


Class Window_MenuStatus < Window_Selectable
  def refresh
    self.contents.clear
    @item_max = $game_party.actors.size
    for i in 0...$game_party.actors.size
      x = 64
      y = i * 116
      actor = $game_party.actors[i]
      draw_actor_graphic(actor, x - 40, y + 80)
      draw_actor_name(actor, x, y)
      draw_actor_class(actor, x + 144, y)
      draw_actor_state(actor, x + 90, y + 32)
      draw_actor_hp(actor, x + 236, y + 32)
      draw_actor_sp(actor, x + 236, y + 64)
    end
  end
end


there you go i removed 2 lines ...

Falcon

DOES NO ONE READ THE GODDAMN RULES?

Strike 1.

Leventhan

Even a novice scripter like me could've figured out what lines to remove. >:(
Try better next time.

Be kind, everyone you meet is fighting a hard battle.

ceegamus

I'm not a novice scripter.  I'm below a novice scripter.

Might I ask, Falcon, what rule I broke?
This is a signature.

ahref

read the annoucements falcon made that tell you the rules

ceegamus

I've checked the announcements.  I can see absolutely no rule which I broke.

Seeing as Falcon edited my first post and the term Resolved it now in the title, I'm forced to assume that's what he's referring to.

However, the topic had been resolved less than five hours, which is not in violation of the rules.

EDIT: I just realized I may have forgotten to put request in the title.  My bad.
This is a signature.