In this code section ofis possible F9 key (toggle cheat) change key? because my F9 key got problem, plus no money to buy another keyboard
scripts/Menu.rb
:
Code:
# Cheat Menu Framework: Menu
##---------------------------------------------------------------------------
## Hotkeys
##---------------------------------------------------------------------------
module CheatsMod
self.singleton_class.send(:alias_method, :cheat_triggers_CHEATMENUFRAMEWORK, :cheat_triggers)
def self.cheat_triggers
cheat_triggers_CHEATMENUFRAMEWORK
if Input.trigger?(Input::F9)
SceneManager.call(Scene_Debug) if CheatUtils.ingame?
end
end
end
The main hotkey may become customizable via UMM in the future.
Depends on if I go ahead with integrating the menu into the pause menu or not.