I have a scripting function that uses send to move me somewhere(world.send("north");) etc, and then when it finishes moving I need to enable a trigger group. Basically something like this:
world.send("north");
world.send("north");
world.enabletriggergroup("group", 1);
Problem is, it sends all the directions and then enables the group all at the same time. The triggers get enabled before it finishes moving. I've tried messing around with queue and execute but i haven't had any luck. Anyone have any techniques? (Sorry if this has been posted before, I did try searching)
world.send("north");
world.send("north");
world.enabletriggergroup("group", 1);
Problem is, it sends all the directions and then enables the group all at the same time. The triggers get enabled before it finishes moving. I've tried messing around with queue and execute but i haven't had any luck. Anyone have any techniques? (Sorry if this has been posted before, I did try searching)