Rich (BB code):
[AE]
AEOn=1
AECOn=1
AESize=5
AERadius=50
AE1=Loathing|2
AE2=Explosion of Hatred|3
AE3=Explosion of Spite|3
AE4=Scourge Skin|3
AE5=Stubborn Stance|3
AE6=Sholothian Carapace|3
AECond1=${Me.XTAggroCount} > 0
AECond2=${Me.XTAggroCount} > 0
AECond3=${Me.XTAggroCount} > 0
AECond4=TRUE
AECond5=TRUE
AECond6=TRUE
this is my sks ae settings in kissassist.
the first 3 handles aggro if multiple mobs are in camp, and i do not have aggro on all of t hem they will be cast.
the last 3 is defensives
so what is happening here is a combination of how kiss uses:
${Me.XTarget}>2 && ${Me.XTAggroCount} > 0
${Me.XTarget}>3 && ${Me.XTAggroCount} > 0
first its checked if you have multiple mobs, more than 3 or more or 4 or more, then it will see how many of them do i have less than 100% aggro on, at this point i want to cast whenever i have 1 or more than i dont have agro on, since thats my job, having aggro on all the things.
${Me.XTarget} tells you how many you have on xtarget list
${Me.XTAggroCount} tells you how many of the things on your xtarget list you have less than 100% aggro on.
use a combination of the two to make a condition that tells you when to cast your ae spells.