Node Red Triggers Question

Trying to make a three way light in Node Red.
Laundry Room Lts is an old GE switch configured as Generic Zwave Switch.
Back Hall Lts is a newer Zoozs Central Scene Switch.
In my image the two lower flows work but I can't seem to get the top flows to work.

The flow triggered by Back Hall Lts:
At the switch with the lights off turning back Hall Lts On then they just turn on then off.
What's happening is I turn the light on, flow starts, the light is on so it shuts it off.
If I invert the Switch it works.

The flow triggered by Laundry Room Lts:
Just keeps triggering when the light is switched late in the flow.
(I have to delete the wire to stop the runaway)

Any suggestions on triggering this correctly?
Thanks

What happens if you remove the action on the Laundry Room Lts (after Back Hall Its) on the first flow? Wouldn't the lights already be on/off based on the switch? If you want to turn the Back Hall Lts based on what happens with the Laundry Room Lts, then stopping the flow at Back Hall Lts would work.

I was trying to do this with one flow, it looks like I'll need two.

You are right the lower flow works now, but it triggers the upper flow.
I think setting up a function node looking at the countdown timer and switch will stop the runaway condition.
Time to learn javascript and function nodes.

This is usually not necessary. I have 32 flows (i.e. tabs), with anywhere from 5-20 sequences per flow. And use a total of 20 function nodes.

This is working. Not sure why I don't get into a race or looping with the two sequences.
Might have something to do with the Hubitat or Node Red event handler.

[{"id":"85cdeba4.5aee4","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"b00f0873.fb6948","type":"hubitat device","z":"85cdeba4.5aee4","deviceLabel":"Laundry Room Lts","name":"","server":"f8cf5164.8c9908","deviceId":"772","attribute":"switch","sendEvent":true,"x":470,"y":257,"wires":[["b91ac152.b98288"]]},{"id":"fc657a03.e10f38","type":"hubitat device","z":"85cdeba4.5aee4","deviceLabel":"Back Hall Lts","name":"","server":"f8cf5164.8c9908","deviceId":"828","attribute":"switch","sendEvent":true,"x":470,"y":376,"wires":[["4db6b32e.320afc"]]},{"id":"4db6b32e.320afc","type":"switch","z":"85cdeba4.5aee4","name":"","property":"payload.value","propertyType":"msg","rules":[{"t":"eq","v":"on","vt":"str"},{"t":"eq","v":"off","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":624,"y":376,"wires":[["4fd7ecd5.5c8f8c"],["6cd68c5.e563d74"]]},{"id":"6cd68c5.e563d74","type":"hubitat command","z":"85cdeba4.5aee4","deviceLabel":"Laundry Room Lts","name":"","server":"f8cf5164.8c9908","deviceId":"772","command":"off","commandArgs":"","x":864,"y":415,"wires":[[]]},{"id":"4fd7ecd5.5c8f8c","type":"hubitat command","z":"85cdeba4.5aee4","deviceLabel":"Laundry Room Lts","name":"","server":"f8cf5164.8c9908","deviceId":"772","command":"on","commandArgs":"","x":865,"y":369,"wires":[[]]},{"id":"a93de5e7.44618","type":"comment","z":"85cdeba4.5aee4","name":" Laundry Room Lts follow Back Hall Lts","info":"","x":590,"y":336,"wires":[]},{"id":"b91ac152.b98288","type":"switch","z":"85cdeba4.5aee4","name":"","property":"payload.value","propertyType":"msg","rules":[{"t":"eq","v":"on","vt":"str"},{"t":"eq","v":"off","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":690,"y":257,"wires":[["9d784592.40e7a8"],["95b9f721.807968"]]},{"id":"9d784592.40e7a8","type":"hubitat command","z":"85cdeba4.5aee4","deviceLabel":"Back Hall Lts","name":"","server":"f8cf5164.8c9908","deviceId":"828","command":"on","commandArgs":"","x":870,"y":257,"wires":[[]]},{"id":"95b9f721.807968","type":"hubitat command","z":"85cdeba4.5aee4","deviceLabel":"Back Hall Lts","name":"","server":"f8cf5164.8c9908","deviceId":"828","command":"off","commandArgs":"","x":870,"y":309,"wires":[[]]},{"id":"f9a006cd.cf9798","type":"comment","z":"85cdeba4.5aee4","name":"Back Hall and Laundry Room Lts work together","info":"","x":680,"y":160,"wires":[]},{"id":"7f1f8614.fd2b","type":"comment","z":"85cdeba4.5aee4","name":" Back Hall Lts follow Laundry Room Lts ","info":"","x":570,"y":220,"wires":[]},{"id":"f8cf5164.8c9908","type":"hubitat config","z":"","name":"Hub","usetls":false,"host":"192.168.1.225","port":"80","appId":"290","nodeRedServer":"http://192.168.1.246:1880","webhookPath":"/hubitat/webhook_","autoRefresh":true,"useWebsocket":false,"colorEnabled":false,"color":"#ace043"}]