How to reenter an evaluated branch?

gumboots

Member
Hi there!

I have a branch where I want to see if I have a ReservedWeapon. The issue is that sometimes the Move task can fail, so the Sequence exits and the Selector above carries on:

BtO8lRv.png


However because HasReservedWeapon is still true, I want to reenter it on the next tick, but because it has already been evaluated, it skips it. Is there anyway around this outside of forcing HasReservedWeapon to false until it reassesses the tree?
 
Is there anyway around this outside of forcing HasReservedWeapon to false until it reassesses the tree?
Not if you're using conditional aborts. In cases like this you could use the Parallel/Interrupt tasks which give you more control over exactly when the tasks are interrupted.
 
Top