There are several ways to enable the console on any Renpy game.
1. You can use Unren and choose the option to enable console.
2. After extracting the game, go into the "renpy/common" folder and look for the file "00.console.rpy"
- Right click on 00.console.rpy and choose "open with" any text editor. Notepad or Notepad++ will work. (make sure to uncheck the "always open with" checkbox).
- With "00.console.rpy" file open in Notepad, find the line that says this:
# If true, the console is enabled despite config.developer being False.
config.console = False
- Change the False value to "True" (capitalization matters here, use capital T)
- From Notepad filemenu choose only the "save" option. (don't choose "save as" option)
- After saving the file and closing Notepad, your console will now be enabled in game.
- You can also install the Extended Variable Viewer (EVV) Mod, which will allow you to see the actual variables you can
change in the console. (I use EVV even with other cheat mods installed because I like to see the game variables myself).
- Extract EVV into the main root folder of the game. To enter the EVV mod in game use ALT + m keys. Once there you
should be able to find any variable you can then change in the console.
- To enter the console in game use Shift + o (that's letter o, not zero).
- In the console enter the variable you wish to change exactly as it's written in EVV and change the value to whatever you
wish.
- For example if the variable for money is "money = XX" then all you have to do is change the xx to whatever you want.
(money = 999999)
Both Unren and EVV should be installed only in the main/root folder of the game.