Hey, so the project I'm working on has only one party member and I have removed the optimize option from the equipment menu, which means that for the player to change their equipment they have to select the equipment option from the menu and press enter three times in a row. Is there a script that changes it so that selecting equipment takes the player directly to the change equipment screen?
Equipment Shortcut
● ARCHIVED · READ-ONLY
-
-
Try this:
Code:class Scene_Menu alias :evg_sm_ccw_isw :create_command_window def create_command_window evg_sm_ccw_isw @command_window.set_handler(:equip, method(:command_equip)) end def command_equip $game_party.menu_actor = $game_party.leader SceneManager.call(Scene_Equip) endendclass Scene_Equip alias :evg_se_start_isw :start def start evg_se_start_isw instant_slot_selection end def instant_slot_selection @command_window.deactivate command_equip endend -
Thanks a bunch, it worked perfectly :)