howlinhoss
Active member
- Joined
- Aug 10, 2019
- RedCents
- 265¢
Thinking about a way to FD off aggro on my necro then stand up after a say 10 seconds.
So far I have made a buff entry to cast Death Peace if aggro is > 90% then a script to stand if my state is equal to feign and toon is not sitting.
However, I have not been able to get it to work. Any glaring issues with this entry?
So far I have made a buff entry to cast Death Peace if aggro is > 90% then a script to stand if my state is equal to feign and toon is not sitting.
However, I have not been able to get it to work. Any glaring issues with this entry?
Code:
[AB6]
Gem=9
Spell=Death Peace
SpellFoci=
DurMod=0
SpellAlias=FD
Announce=/bc My aggro is too high - FDing
SpellMinMana=05
TarCnt=1
TarType=self cbt
Recast=FALSE
SpellIcon=
PreCondition=/if ({Me.PctAggro} > 90) /return TRUE
[AB7]
Gem=script
Spell=AggroScript
SpellFoci=
DurMod=0
SpellAlias=AggroCheck
Announce=
SpellMinMana=0
TarCnt=1
TarType=self idle cbt
Recast=FALSE
SpellIcon=
PreCondition=/if (${Me.State.Equal[FEIGN]} && !${Me.Sitting}) /return TRUE
[Script-AggroScript]
Commands=3
C1=delay 10s
C2=/stand
C2=/return
Last edited by a moderator:


