My end goal is to create a true/false condition for a KissAssist.ini. What I am thinking so far is something like this:
(!${Target.MyBuff[Name Of DOT].ID} && ${Target.PctHPs} > 70) && (${Target.ConColor.Equal[RED]} || ${Target.ConColor.Equal[YELLOW]} || ${Target.ConColor.Equal[WHITE]})
I wondering if the Target.ConColor checks can be further collapsed into something cleaner.... like (${Target.ConColor.Equal[RED|YELLOW|WHITE]}) but this does not work, I assume its looking for an exact match of "RED|YELLOW|WHITE" and not the intended function of "RED" or "YELLOW" or "WHITE". Is there way to fix that? My thinking is that querying the TLO Target.ConColor once, instead of 3 times, would be cleaner and less work.