I made a conversation with the conversation wizard. And I want to have different answers to one question. This is the VBS Code I executed after the question has been asked:
if waechter_ueberzeugt=0 then
Action.Message "Message 1"
else
Action.Message "Message 2"
Action.QuitDialogue
Action.GoToFrame "Gulli"
End if
It doesnt matter wether waechter_ueberzeugt (global variable) is 0 or 1, the messages are not displayed. He changed to the Frame "Gulli", but the dialogue isnt quit as well. The script does not return any error.
If there is any option to make questions in the dialogue (un)visible with VBS-Code it would be much easier, but I didnt find anything about that.
Please help me.