I think that's another one.

Code:
# You can place the script of your game in this file.
init:
# Declare images below this line, using the image statement.
# eg. image eileen happy = "eileen_happy.png"
# Declare characters used by this game.
$ e = Character('Eileen', color="#c8ffc8")
screen main_menu:
# The background of the main menu.
window:
style "mm_root"
# The main menu buttons.
frame:
group "mm"
anchor (1.0,0.0)
pos (0.96,0.4)
has vbox
textbutton _("Start Game") action Start()
textbutton _("Load Game") action ShowMenu("load")
textbutton _("Preferences") action ShowMenu("preferences")
textbutton _("Help") action Help()
textbutton _("Quit") action Quit(confirm=False)
# The game starts here.
label start:
e "You've created a new Ren'Py game."
e "Once you add a story, pictures, and music, you can release it to the world!"
Mostly consists of examples given in the docs as is.
Pressing Shift+Y to dump styles to actually figure out where do I have to kick it to draw what I want produces this traceback:
Code:
I'm sorry, but an exception occured while executing your Ren'Py
script.
TypeError: 'NoneType' object is unsubscriptable
While running game code:
- script at line 32 of C:\----------------\bugexample/game/script.rpy
- python at line 200 of renpy-6.11.0/common/00library.rpy.
-- Full Traceback ------------------------------------------------------------
File "C:\Gamedrive\RenPy\renpy\bootstrap.py", line 252, in bootstrap
File "C:\Gamedrive\RenPy\renpy\main.py", line 309, in main
File "C:\Gamedrive\RenPy\renpy\main.py", line 93, in run
File "C:\Gamedrive\RenPy\renpy\execution.py", line 243, in run
File "C:\Gamedrive\RenPy\renpy\ast.py", line 340, in execute
File "C:\Gamedrive\RenPy\renpy\exports.py", line 562, in say
File "C:\Gamedrive\RenPy\renpy\character.py", line 675, in __call__
File "C:\Gamedrive\RenPy\renpy\character.py", line 634, in do_display
File "C:\Gamedrive\RenPy\renpy\character.py", line 451, in display_say
File "C:\Gamedrive\RenPy\renpy\ui.py", line 216, in interact
File "C:\Gamedrive\RenPy\renpy\display\core.py", line 1586, in interact
File "C:\Gamedrive\RenPy\renpy\display\core.py", line 2129, in interact_core
File "C:\Gamedrive\RenPy\renpy\display\layout.py", line 638, in event
File "C:\Gamedrive\RenPy\renpy\display\behavior.py", line 179, in event
File "renpy-6.11.0/common/00library.rpy", line 200, in dump_styles
File "C:\Gamedrive\RenPy\renpy\style.py", line 879, in write_text
TypeError: 'NoneType' object is unsubscriptable
While running game code:
- script at line 32 of C:\---------------------\bugexample/game/script.rpy
- python at line 200 of renpy-6.11.0/common/00library.rpy.
Ren'Py Version: Ren'Py 6.11.0f