Prevent ESC menu from drawing.

● ARCHIVED · READ-ONLY
Started by ToasterKinG 7 posts View original ↗
  1. Browsed through and couldn't find specifically how to keep the ESC menu window from being drawn. Also would like to get rid of what I assume is you amount of money in the bottom left, and its window. I've managed to already remove all other unnecessary menu commands. If there is a topic that would help or you know what i should # off hand it would be greatly appreciated. Included is a photo so you know specifically what im talking about. 

    Thank you for your time and effort. 

    menu.png

     
  2. ToasterKinG said:
    Browsed through and couldn't find specifically how to keep the ESC menu window from being drawn.
    What do you mean? Do you look for the “Change Menu Access” event command?

    ToasterKinG said:
    Also would like to get rid of what I assume is you amount of money in the bottom left, and its window.
    Windows in scenes are created in the respective #start method which is “documented” as “Start Processing”. I think create_gold_window is a pretty self-explanatory method name. So just delete or comment out line 13 (may vary) and the method won't be called / the gold window won't be created.
  3. There is an event command to enable/disable menu access - this will stop the menu being drawn when the ESC key is pressed.


    I've moved this thread to RGSS3 Script Requests. Please be sure to post your threads in the correct forum next time. Thank you.
  4. put this somewhere below materials in its own script page.

    Code:
    #===============================================================================class Window_Gold#===============================================================================  #-----------------------------------------------------------------------------  #  #-----------------------------------------------------------------------------  def refresh    contents.clear    self.opacity = 0  end  #-----------------------------------------------------------------------------  #  #-----------------------------------------------------------------------------end
  5. Dekita, thanks a lot. I took an educated guess and duplicated the script you provided and replaced "Window_Gold" with "Window_MenuStatus" Worked like a charm. 
  6. This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.