AND Block Clarification
-
I don't really use this AND blocks. But I am curious how do you use it?
I am wondering if the use of AND blocks is to connect conditions that you really don't know which one will comes true first? So and block will only proceed if the conditions are true regardless of the sequence? -
AND is effectively one block above another connected through orange (if this is true, and this is true connected through orange) pass onto the next via the orange dot, but sometimes you want to use a block being true and another being true from a different block in a different tree, to do something, so a AND block would work well.
-
@jstap oh I see, I thought it is used for conditions that has no proper sequence. Thanks!
-
This is an example of how I use it: https://fxdreema.com/shared/x6emCuVde
-
@jstap I see, I thought i can be used for conditions that can be true without proper sequence like Condition 2 can be true first before Condition 1 as long as both is True.
-
You can, as long as both connected conditions are true at any point thy are connected, the AND block will pass.