because i need do delet the b button so that it wont open the menu if its pressed i need this for my project an i cant use the menu forbidden command on eventing because it causes trouble with my scripts so please help
edit : i found out that the game interpreter uses the command_351 to open the menu
but there is no button defined!
Code:
#--------------------------------------------------------------------------
# * Open Menu Screen
#--------------------------------------------------------------------------
def command_351
return if $game_party.in_battle
SceneManager.call(Scene_Menu)
Window_MenuCommand::init_command_position
Fiber.yield
end