Hi,
I hope you can help me with a question about variables.
I have an identical sequence but with three possible dresses (with fullscreen images), and at the moment I have put this code to show one of the three dresses according to a variable:
This way works and show the correct image but that means repeating this conditional about 30 times and more in the future... of course this is the simple way but I think that perhaps not the easier.
I've tried to use variables in name but any of my tries doesn't works.
I've tried something like:
or
I don't know if this is possible with "scene" command.
I need the help of this forum Gurus :coldsweat:
Thanks in advance.
I hope you can help me with a question about variables.
I have an identical sequence but with three possible dresses (with fullscreen images), and at the moment I have put this code to show one of the three dresses according to a variable:
Code:
default katia_sport_dress = 1
label katia_forgottenpark_md:
if katia_sport_dress == 1:
scene katia train_ves1_5
if katia_sport_dress == 2:
scene katia train_ves2_5
if katia_sport_dress == 3:
scene katia train_ves3_5
k "bla, bla, bla..."
I've tried to use variables in name but any of my tries doesn't works.
I've tried something like:
Code:
scene katia train_ves[katia_sport_dress]_5
Code:
scene katia train_ves + [katia_sport_dress] + _5
I need the help of this forum Gurus :coldsweat:
Thanks in advance.