0 votes
by (180 points)
How can I make a player choose multiple things out of a given list so I can later use those variables in an if statement

 

e.g.

Intro

[[Passage 1]]

Your  partner is

o Kind

o Dismissive

o Funny

o Serious

etc

 

{Player then picks e.g. funny and kind}

 

[[passage 2]]

You ask your partner what he thinks of your new dress.

<<if chosen ("kind")>>
"I think you'd look good in anything"
<<endif>>

 

<<if chosen ("dismissive")>>
 
<<endif>>

 

 

[[Passage 3]]

 

You are visibly sad.

<<if visited("funny")>>
He tried to cheer you up by making a dumb joke. It worked
<<endif>>

<<if chosen ("serious")>>

 

<<endif>>

 

Thanks in advance

1 Answer

0 votes
by (44.7k points)

I just answered this for you at r/twinegames.

...