I'm trying to make an rpg, but, I'm stuck in the dialogue system. I want to make the another options disappear when one of them was clicked on.
{label: 1 =[[Choice1]]}
{label: 2 =[[Choice2]]}
[[Choice1]]
@replace 2=
[[Choice2]]
@replace 1=
This code works fine with two choices, but, i can't do it with three or more choices. There is another way to do this? Thanks in advance.
You could do this:
{label:1=[[Choice1]]}
{label:2=[[Choice2]]}
{label:3=[[Choice3]]}
[[Choice1]]:
@replace 2=
@replace 3=
[[Choice2]]:
@replace 1=
@replace 3=
[[Choice3]]:
@replace 1=
@replace 2=