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.

Buffs1=Unfettered Growth|MACond6=!${Me.Buff[Unfettered Growth].ID}……. How would I set this to cast on the Main assist/tank????
I tried Cond6=!${Mainassist.Buff[Unfettered Growth].ID}but didn't work
You can only access the Buff Member from ${Me} or ${Target}. You can access your pet's buffs as well, but that's not in the scope of this question.
${Me.Buff[Unfettered Growth].ID} or ${Target.Buff[Unfettered Growth].ID}
We were working on a way to ask a character if they had a buff and have them return the ID or zero, but the plugin we tested had too many issues and would hang up a lot.
you could try:SO there no way I can do something like Cond6=!${Mainassist.Buff[Unfettered Growth].ID} on my shaman for Cond, I just don't want my shaman to keep casting each fight if my Tank Don't need it
DPS1=Unfettered Growth|99|MA|cond6
Cond6=${Target.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Unfettered Growth].ID}
DPS1=Unfettered Growth|99|MA|cond6
Cond6=${Target.ID}==${Group.MainAssist.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Unfettered Growth].ID}
