Could someone help me?
I am writing a script, and one of the decisions I need to be in green.
I put the code, but it only works in the first choice, in the others no matter what I do does not change the color.
Is it something I'm doing wrong?
I am writing a script, and one of the decisions I need to be in green.
I put the code, but it only works in the first choice, in the others no matter what I do does not change the color.
Is it something I'm doing wrong?
Code:
menu:
"Do it again":
jump sam
"{color=#00ff00}Change{/color}":
jump ch
label sam:
scene black with medium_dissolve
play sound "shoot.wav"
jump a9
label a9:
play sound "RUN.mp3" volume 0.2
show i02
"Your choice"
menu:
"Follow the left":
jump left
"{color=#00ff00}Open the door{/color}":
jump Open
label Open:
show i03
with medium_dissolve
call screen open
if _return == "door":
jump door
label door:
show i67
with dissolve
menu:
"Do not stay":
jump stairs
"{color=#00ff00}Take a look{/color}":
Last edited: