Advertisement
Archeia

Archeia Simplified Menu

Dec 26th, 2014
2,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.52 KB | None | 0 0
  1. #==============================================================================
  2. # ** Archeia Simplified Menu
  3. #------------------------------------------------------------------------------
  4. #  Erases all unnecessary stuff for Lucas
  5. #==============================================================================
  6.  
  7. #==============================================================================
  8. # ** Window_MenuCommand
  9. #------------------------------------------------------------------------------
  10. #  This command window appears on the menu screen.
  11. #==============================================================================
  12. class Window_MenuCommand < Window_Command
  13.   #--------------------------------------------------------------------------
  14.   # * Create Command List
  15.   #--------------------------------------------------------------------------
  16.   def make_command_list
  17.     add_command(Vocab::item, :item, main_commands_enabled)    
  18.     add_save_command
  19.     add_game_end_command
  20.   end
  21. end
  22.  
  23. #==============================================================================
  24. # ** Window_ItemCategory
  25. #------------------------------------------------------------------------------
  26. #  This window is for selecting a category of normal items and equipment
  27. # on the item screen or shop screen.
  28. #==============================================================================
  29.  
  30. class Window_ItemCategory < Window_HorzCommand
  31.   #--------------------------------------------------------------------------
  32.   # * Create Command List
  33.   #--------------------------------------------------------------------------
  34.   def make_command_list
  35.     add_command(Vocab::item,     :item)
  36.     add_command(Vocab::key_item, :key_item)
  37.   end
  38. end
  39.  
  40. #==============================================================================
  41. # ** Window_MenuStatus
  42. #------------------------------------------------------------------------------
  43. #  This window displays party member status on the menu screen.
  44. #==============================================================================
  45.  
  46. class Window_MenuStatus < Window_Selectable
  47.   #--------------------------------------------------------------------------
  48.   # * Hiding Party Status Window
  49.   #--------------------------------------------------------------------------
  50.   def initialize(x, y)
  51.     super(x, y, 0, 0)
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # * Refresh
  55.   #--------------------------------------------------------------------------
  56.   def refresh ; end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement