- Joined
- Mar 17, 2014
- Messages
- 25
- Reaction score
- 0
- First Language
- Russian
- Primarily Uses
hey guys does anyone know in which script the data is where you can see which key does what
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!
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

