init 999 python: #Enable console config.console = True # Define function to open the menu def EnableCheatMenu(): renpy.call_in_new_context('ShowCheatMenu') config.keymap['CheatMenuBind'] = ['k'] #Enable fast console config.keymap['console'].append('l') config.underlay.append(renpy.Keymap(CheatMenuBind=EnableCheatMenu)) # label ShowCheatMenu: jump CheatMenu label CheatMenu: menu: "Money": $ player_money += 1000 "EXP": $ player_xp += 2000 "Back": return init 998 python: config.overlay_screens.append("cheats") screen cheats: zorder 999 key "u" action SetVariable("player_power_available", 2)