riordan
Member
- Joined
- Jun 16, 2015
- RedCents
- 304¢
Is there any way to do OR as opposed to AND (&&) within a kiss condition? In Holys and Downs this is normally || but I'm guessing that character is reserved in kiss .inis? I was hoping for something like below so that my AE taunts only fire as needed. The only thing I can think of doing this would be making a separate AE call for each mob and checking only 1 xtarget for each (IE Explosion of Spite|2, Explosion of Spite|3, Explosion of Spite|4, Explosion of Spite|5). This would get nasty quick with Explosion of Spite, Explosion of Hatred, and Stream of Hatred.
AE1=Explosion of Spite|2
AECond1=(${Me.XTarget[1].PctAggro} < 99 && ${Me.XTarget[1].ID} > 0 && ${Me.XTarget[1].ID} != ${AggroTargetID}) || (${Me.XTarget[2].PctAggro} < 99 && ${Me.XTarget[2].ID} > 0 && ${Me.XTarget[2].ID} != ${AggroTargetID}) || (${Me.XTarget[3].PctAggro} < 99 && ${Me.XTarget[3].ID} > 0 && ${Me.XTarget[3].ID} != ${AggroTargetID}) || (${Me.XTarget[4].PctAggro} < 99 && ${Me.XTarget[4].ID} > 0 && ${Me.XTarget[4].ID} != ${AggroTargetID}) || ${Me.XTarget[5].ID} > 0
AE1=Explosion of Spite|2
AECond1=(${Me.XTarget[1].PctAggro} < 99 && ${Me.XTarget[1].ID} > 0 && ${Me.XTarget[1].ID} != ${AggroTargetID}) || (${Me.XTarget[2].PctAggro} < 99 && ${Me.XTarget[2].ID} > 0 && ${Me.XTarget[2].ID} != ${AggroTargetID}) || (${Me.XTarget[3].PctAggro} < 99 && ${Me.XTarget[3].ID} > 0 && ${Me.XTarget[3].ID} != ${AggroTargetID}) || (${Me.XTarget[4].PctAggro} < 99 && ${Me.XTarget[4].ID} > 0 && ${Me.XTarget[4].ID} != ${AggroTargetID}) || ${Me.XTarget[5].ID} > 0
Last edited by a moderator:

