How to make the first line of a menu dynamic?
Posted: Tue Jul 09, 2019 11:16 am
Hi everyone,
I'm trying to make something like this:
the problem is, this doesn't work. Is there a way to deal with this?
Thanks
I'm trying to make something like this:
Code: Select all
define bman = Character("Bartender")
$ number = renpy.random.randint(1,3)
menu ask_for_a_drink:
#First we have three condition that will decide what will appear in the textbox (the bartender is talking)
if number == 1:
bman "What's your poison?"
if number == 2:
bman "You thirsty?"
if number == 3:
bman "What would you like today?"
#Then the choices that will appear on the menu screen
"Vodka":
some text and actions...
"Jin":
some text and actions...
"Wine":
some text and actions...
Thanks