so I just want to remove equip and save and end game from the standard menu. tried doing like this in the scenes_menu:
#--------------------------------------------------------------------------
# * Create Command Window
#--------------------------------------------------------------------------
def create_command_window
s1 = Vocab::item
s2 = Vocab::skill
#(removing it like this)s3 = Vocab::equip
s4 = Vocab::status
#(removing it like this)s5 = Vocab::save
#(removing it like this)s6 = Vocab::game_end
@command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6]) <<<<---- (and removing s3, s5 and s6 here)
@command_window.index = @menu_index
if $game_party.members.size == 0 # If number of party members is 0
@command_window.draw_item(0, false) # Disable item
@command_window.draw_item(1, false) # Disable skill
@command_window.draw_item(2, false) # Disable equipment <<-- doing stuff here made them gray but pressable..
@command_window.draw_item(3, false) # Disable status
end
if $game_system.save_disabled # If save is forbidden
@command_window.draw_item(4, false) # Disable save
end
end
--------
that did remove them, but turned STATUS into EQUIP, which I wanted removed, and to actually BE Status.. Would be nice with some help. This is not a proper way to write scripts.