How to i pick in order?

lets say i have 5 actors

1
2
3
4
5

and i want them to be picked in order by player so it saves the order and if they are picked in order something happens

so if player picks those actors as
1
2
4
it resets and he has to press number one and restart the process

if that explains it xD

Hi,

There are multiple solutions, one of them is to create an array using the “MakeArray” node. You simply add elements to that array in the order you want the player to pick up the items and then increment an integer on the player every time he picks up an item and check it against the appropriate index of the array. As soon as an element returns fail, the player messed up the order.