Is there a tactics command that can effectively stop the list from reading beyond that point? I want to set up some tactics where a specific action is only taken if and only if 2 conditions are true. I can't see how to do this in the tactics system other than with the following:
A) If condition 1 ---> skip to C

tactic that prevents reading below this point
C) If condition 2 ---> take specific action
I am pretty sure there isn't an option that will do this directly, but are there any that do it indirectly? For example, would a tactic such as, "enemy (nearest) ---> attack" do this, or another such command?
Thanks!