right i wanna put a line in for buffing sluggishness, ferocious growth on main tank.
how would i write the lines and would it be under buffs?
Here's what I use for my shaman. You can put it in buffs, but as an fyi, anything listed in buffs will only be cast if you are out of combat. So I have the following in my BUFFS section:
Buffs5=Lethargy|Class|WAR,PAL,SK
Buffs10=Unfettered Growth|MA
The way I run my group, my tank is my MA but in some configurations, I had a warrior and paladin in my group so that's why I used Class in 1 but just MA in the other (as I was going ahead and putting sluggishness on both warrior and paladin, but was only putting the growth line on who I had actually tanking).
To get the buff to be cast in combat, you have to put it in the DPS section and use a condition, so that it isn't cast over and over again like this (note I was only putting Lethargy back up on my tank in combat).
DPS6=Unfettered Growth|94|MA|Cond4
DPS7=Lethargy|93|MA|Cond6
and then in my Conditions section I have this:
Cond4=${Target.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Unfettered Growth].ID}
Cond6=${Target.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Lethargy].ID}
You would just need to modify the lines to have Sluggishness and Ferocious Growth instead.