- May 11, 2020
- 16
- 17
I did the steps precisely as you said, but now I noticed my error: there are several config.console parts and the False that I set to True was "config.console set to True".Console commands are still in.
Unlocking the console works the same way in any RenPy game:
- Go to your game root folder (in this case, Four_Elements_Trainer_v.0.8.6d-pc).
- Go to renpy\common and find the file 00console.rpy
- Open 00console.rpy with a text editor such as Notepad.
- Find the line
config.console = False
(use CTRL + F to search for it to find it easier).- Change it to to
config.console = True
and save the file. (Make sure it's True with a capital T, or else the game won't start.)- Start up the game and press Shift + O. This will open the console. (That's the letter O and not a zero.)
The commandDir()
shows you a massive list of all the console commands in the game. Play around with them at your own risk. The console is disabled by default for a reason.
The only useful command I know isobsidian = 1
which either gives you an obsidian or sets your total amount to 1 (don't know which). But it's probably not even needed any more after they added the Tavern Quests which offer an endless supply of obsidian.
I just tested on the latest version (0.8.6d) and the console opens for me. Try following my guide above.
I did wonder why it had changed from "=" to "set to". But now I searched for other config.console parts and found config.console = False. Naturally I've changed the setting to True now.
Now it works like a motherfucker! Hope that anyone with similar issue can learn from my mistake of wrong console.config.