Page 1 of 1

choose specific dialogue states to have auto continue

Posted: Sat Apr 24, 2021 8:50 am
by PepeJEe
Hey, I got my dialogue working and it's really simple to do when you look into the manuals etc. xD

Well I have one simple question. I have 7 dialogue states and I want to have auto continue for the first tree dialogue boxes/states. After the 3rd dialogue I want my continue button to appear. Is there a way to do that? Currently I have continue button working between each dialogue. :D

Re: choose specific dialogue states to have auto continue

Posted: Sat Apr 24, 2021 10:48 am
by Tony Li
Hi,

You can use the SetContinueMode() sequencer command. For example, set the first node's Sequence to:

Code: Select all

SetContinueMode(false);
Delay({{end}})
Set the third node's Sequence to:

Code: Select all

SetContinueMode(true)