any idea on how to open console on mac?
IDK why I couldn't enable console by Shift+D, dev prolly locked it, so there's two way to do it manually.
1. Modify the 00console.rpy
- Click "Show Package Contents" on the game, go to Contents/Resources/autorun/renpy/common
- Find "00console.rpy"and open in textEdit
- Change the line
to
- Run the game and press Shift+O
2. Create a permission file yourself
- Click "Show Package Contents" on the game, go to Contents/Resources/autorun/game
- Create a file in textEdit, any name does not matter as long as it's a .rpy ("kodeine.rpy" i.e.)
- Paste this and save file
Code:
init 999 python:
config.developer = True
config.console = True
- Run the game and press Shift+O