Page 2 of 2

Re: using randomValue

Posted: Fri Oct 11, 2024 10:54 am
by Tony Li
Thanks for sending the repro project. The x=random(4) node's Sequence field is blank, so it defaults to the Dialogue Manager's Default Sequence, which is Delay({{end}}).

You can either set the Sequence field to:

Code: Select all

None()
or tick the Group checkbox.

Re: using randomValue

Posted: Fri Oct 11, 2024 12:33 pm
by gwishinofficial
For anyone as dense as I am, it is THIS highlighted node that needed None() in its Sequence field, the same node that had the script on it. Not the node beneath it as I have it in this screenshot. Thanks again, Tony. :oops:
image.png
image.png (27.36 KiB) Viewed 55 times

Re: using randomValue

Posted: Fri Oct 11, 2024 2:50 pm
by Tony Li
Glad to help! Any node that should be processed and then immediately advanced past should have their Sequence field set to None() or Continue(). (Either is fine.)