Two things have been nagging me for a while about using characters with image attributes. (This is a problem with the side image only; I don't want the character image to be shown in this particular interaction.)
First, it seems using attributes in a menu prompt doesn't work:
Code: Select all
menu:
e happy "How can I help you?"
"Help with the current screen":
pass
"Go back":
pass
Code: Select all
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/BKhelp.rpy", line 14: expected menuitem
e happy "How can I help you?"
^
Ren'Py Version: Ren'Py 6.99.10.1227
The only workaround I could find if this:
Code: Select all
e happy "{nw}"
menu:
e "How can I help you?"
"Help with the current screen":
pass
"Go back":
pass
So Question 1: Is there another way to do this?
Question 2 is more straightforward. What is the python equivalent of say with image attribute? I mean this:
Code: Select all
e happy "Bla bla bla"
Code: Select all
$ renpy.say(e happy, "Bla bla bla")Does anyone have answers to those two questions?
Anyway, thanks a lot for reading this far! ^^