Why are you trying to make everything so complicated?
First, never touch the
00console.rpy file. It is totally useless.
Then, in the
option.rpy, just add:
define config.developer = True
define config.console = True
No need of inits, python's hide, marabout, black magic or voodoo stuffs.
This will work 99% of the time. And if it doesn't work, it means that the dev has blocked the
config.console
somewhere. And when it's blocked, 99% of the time it's in the
option.rpy file.
If not, just go for a search in the rpy files of the /game directory.
But here, whether for week 1 or week 2, it's out of the box for both console and developer tabs.
And same goes for for the roolback.
Here is what I add in all the renpy games I'm playing and it always works like a charm:
Python:
define config.developer = True
define config.console = True
define config.rollback_enabled = True
define config.hard_rollback_limit = 256
define config.rollback_length = 256
define config.has_autosave = False
define config.autosave_on_choice = False
define config.autosave_on_quit = False
I usually put these lines between the
define build.name
and the
## Sounds and music ##########