Cancel a piston


#1

1) Give a description of the problem
Is there a way to cancel a piston

2) What is the expected behavior?
A 2nd piston that is started from a 1st piston is send a signal to exit immediatly

3) What is happening/not happening?
I can’t figure out how to cancel the execution of piston externally.

I have a piston that starts a second piston I want the second piston to run independently for a while, but then trigger it to exit from the first piston. I see that I can PAUSE a piston and RESUME a piston, and obviously EXECUTE piston… but I don’t see how to terminate a piston. Is this possible?


#2

Send an argument to the other piston with a true variable.

In the other piston have a condition that looks for this arguement being true and use the action of cancel all tasks.

This miiight work