I tried @Sixth's solution to the problem:
Code:
class Scene_Menu < Scene_MenuBase
alias skip_act_sel9972 create_command_window
def create_command_window
skip_act_sel9972
@command_window.set_handler(:equip, method(:call_equip_scene))
end
def call_equip_scene
if $game_party.members.size > 1
command_personal
else
SceneManager.call(Scene_Equip)
end
end
endBut as he said in his original post. It probably won't work with a custom menu. I'm using PAC's main menu.
PAC's main menu script
PAC's compact menu addon
I'm just wondering if there is a way to get rid of the Actor status bit and have it cut straight to the actor equipment page.
Thanks