- Joined
- Sep 24, 2015
- Messages
- 65
- Reaction score
- 36
- First Language
- English
- Primarily Uses
- RMVXA
Hi. Since I only have one main character in my game I would like to simply the equipment menu by removing the actor selection page. (This one)
I tried @Sixth's solution to the problem:
But as he said in his original post. It probably won't work with a custom menu. I'm using PAC's main menu.
as well as the 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

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
end
But as he said in his original post. It probably won't work with a custom menu. I'm using PAC's main menu.
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