Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Look at the Debuffall feature in the DPS section of the Kiss Assist instructions.
http://www.redguides.com/community/showthread.php/26002-KissAssist-6-Instructions-amp-Settings-Info#dps
Don't forget about the AE slow AA; Turgors Swarm (or is it Tigirs, I forget which one is AE).
did you ever get a chance to look at the log i sent you about the debuffall getting hung up?
/if (${DebugCombat}) /echo \atDEBUGCOMBAT DebuffCast 1 DebuffTargetID: ${DebuffTargetID} ${i} Find: ${DBOList${i}.Find[|${DebuffTargetID}]} Timer: ${DBOTimer${i}} List: ${DBOList${i}} \agLine#: ${Macro.CurLine}
/if (${GroupEscapeOn} && ${Select[${Me.Class.ShortName},WIZ,DRU]} && (${Raid.Members}==0)) /call GroupEscape
/if (${MezOn}) /call DoMezStuff
/if (${Spawn[${DebuffTargetID}].Type.Equal[Corpse]}) /return
/varset TempTimer 0
/varset Tag1 ${DPS[${i}].Arg[4,|]}
/varset Tag2 ${DPS[${i}].Arg[5,|]}
/if (${Tag1.Equal[always]}) /varset Tag2 always
| Test -> Do i have enough mana to cast the spell
/if (${Me.CurrentMana}<${Spell[${DebuffText}].Mana}) {
/if (${DebugCombat}) /echo \atDEBUGCOMBAT DebuffCast: i didnt have enough mana to cast ${DebuffText} so im going to :SkipCast \agLine#: ${Macro.CurLine}
/goto :SkipCast
}
/if (${Int[${Spawn[${DebuffTargetID}].ID}]}==0) /return
/target id ${DebuffTargetID}
Yes. It looks like you were killing mobs really fast, your tank went from tanking 1 mob to another is a matter of seconds. Would need to add an additional test for spawn not existing.
Find the code below in the DebuffCast routine and add the highlighted line.
Rich (BB code):/if (${DebugCombat}) /echo \atDEBUGCOMBAT DebuffCast 1 DebuffTargetID: ${DebuffTargetID} ${i} Find: ${DBOList${i}.Find[|${DebuffTargetID}]} Timer: ${DBOTimer${i}} List: ${DBOList${i}} \agLine#: ${Macro.CurLine} /if (${GroupEscapeOn} && ${Select[${Me.Class.ShortName},WIZ,DRU]} && (${Raid.Members}==0)) /call GroupEscape /if (${MezOn}) /call DoMezStuff /if (${Spawn[${DebuffTargetID}].Type.Equal[Corpse]}) /return /varset TempTimer 0 /varset Tag1 ${DPS[${i}].Arg[4,|]} /varset Tag2 ${DPS[${i}].Arg[5,|]} /if (${Tag1.Equal[always]}) /varset Tag2 always | Test -> Do i have enough mana to cast the spell /if (${Me.CurrentMana}<${Spell[${DebuffText}].Mana}) { /if (${DebugCombat}) /echo \atDEBUGCOMBAT DebuffCast: i didnt have enough mana to cast ${DebuffText} so im going to :SkipCast \agLine#: ${Macro.CurLine} /goto :SkipCast } /if (${Int[${Spawn[${DebuffTargetID}].ID}]}==0) /return /target id ${DebuffTargetID}
