I want to play a sound whenever the player performs a right-click to bring up the game menu.
I assume I have to put
Code: Select all
play sound donk
Code: Select all
activate_sound "donk.ogg"
Any suggestions are appreciated, thank you.
Code: Select all
play sound donk
Code: Select all
activate_sound "donk.ogg"
Worked like a charm. Thank you very much.strayerror wrote: ↑Thu Feb 14, 2019 7:50 pmYou're on the right track, but at_list is expecting an iterable type. In python that's typically a list or a tuple (although there are others).Code: Select all
renpy.show(image, at_list=[holdleft]) # using a list
Sorry for the late reply. But this worked perfectly.Alex wrote: ↑Thu Dec 06, 2018 6:00 pmWell - ok, another approachCode: Select all
$ renpy.jump("db%s.c" % debate_num)
Brought up an error saying it can't find label db[debate_num].c.Alex wrote: ↑Thu Dec 06, 2018 5:08 pmTryhttps://www.renpy.org/doc/html/statemen ... renpy.jumpCode: Select all
$ renpy.jump("db[debate_num].c")