- Apr 29, 2018
- 1
- 0
Figured I'd add this for everyone so they can modify Ren'Py games.
To enable Developer Console:
OPTION 1:
Download the options.rpy file at
You must be registered to see the links
it goes into the /renpy game xxx../game/ folder.
OPTION 2:
in "renpy game xxx" folder enter /game folder. create file "options.rpy"
type this text in it --
init -1:
python hide:
config.developer = True
--save and exit.
*Important!!!!! second line needs 4 spaces before python hide:
Third line needs 8 spaces before config.developer = True*
Now to enable Console Commands:
Go to "Renpy game xxx"/ Renpy / Common / 00console.rpy
ctrl+f and enter config.console
Set config.console variable to True
Example..... config.console = True
Save file
in game press shift O (letter)
Thanks for the info. I could activate console just by changing the false to true in the 00console file