May 12, 20205 yr Hello, I have 2 druids in the same group, both are resto, and I want them both to use Tree of Life. I tried using condition (Buff casted by me Tree of Life:False) But it seems like it doesn't recognize that. When one druid does Tree of life, it creates an aura so the 2nd one doesn't cast Tree of Life. I tried to use Buff stack not equal 2. Less than 2, bigger than..etc. Neither one worked. Sometimes it just keeps spamming tree of life. How do I go around that with xml profile ? thanks
May 12, 20205 yr Hello, try to use c# condition !ObjectManager.Target.GetBuffs("Tree of Life").Any(a => a.Owner == ObjectManager.Me.Guid)
May 12, 20205 yr Author 9 hours ago, Droidz said: Hello, try to use c# condition !ObjectManager.Target.GetBuffs("Tree of Life").Any(a => a.Owner == ObjectManager.Me.Guid) This does not work for me. I did C sharp code condition. Only 1 druid use Tree of Life, other one does not.
May 12, 20205 yr "Tree of Life" is casted on self. Shouldn't it be: !ObjectManager.Me.BuffCastedByAll("Tree of Life").Contains(ObjectManager.Me.Guid)
May 13, 20205 yr Author 2 hours ago, Zan said: "Tree of Life" is casted on self. Shouldn't it be: !ObjectManager.Me.BuffCastedByAll("Tree of Life").Contains(ObjectManager.Me.Guid) works! thanks
Create an account or sign in to comment