That is line of sight issue.
Me facing left while you standing on my right you won't be in my line of sight. The only caveat being PQR didn't seem to have this problem and I didn't have to write anything custom for it, but I had to write a getdistance and get cd though.
want to check if the unit has current agro on the boss for Hand of Protection
Basically
Dont want to cast it on tank. how exactly does the .agro work?Code:{"Hand of Protection", {"lowest.health <= 15", "!lowest.agro", "!lowest.buff"},"lowest"},
What PE's interrupt check for channeling spells?
interruptat(#) is clearly for casts, do we have to write a custom functions for channels?
Is there a condition for target of target? For instance, while I have Nature's Vigil I want to be able to use wrath on my targets target
target.target(target)
The first target is your target, the second is the target function, the third says, who your target is targeting, which in this case is just his target in general.
This works as a conditional, not sure about as an actual target destination for your spell. Possibly actually. I believe I have something similar somewhere in one of my routines
So, for moonfire you'd code it like this?:
{ "Moonfire", { "!debuff.target.target" }, "target.target}
Is it possible to make a wait in a rotation
Basically what i want to do is
{"Hammer of Wrath"}
{"spell.cooldown(Hammer of Wrath) =< 0.15"}
Return
end
and then resume rotation after that so it doesn't use a GCD when Hammer of Wrath is almost of cooldown.
Hello, im using older version of this addon on private server running 5.4.2 patch, and im happy with it all works relative good, i just cant get one thing to work i was hopping someone can help me.
{"370", {"unit.buff(31884).any", "target.range <= 30"}}, --purge
I want to purge buffs from player, but this doesnt seam to work, i also tried target.buff(), that also doesnt work.Do i have error in code, or this older version of addon doenst support it, also can i fix it by copying some code from new version of this addon?
EDIT:Also on monk { "Detox", { "player.dispellable(115450)" }, "player" }, -- Self Dispell (Detox) works just fine.
But on Shaman { "51886", { "player.dispellable(51886)", "player" }}, -- cleanse spirit doesnt work, hm ?
Last edited by ivicask; 01-15-2015 at 08:49 AM.
[s]Ya, my
{ "Tranquilizing Shot", { "!target.buff(33206)", "target.buff(13046)", "target.buff(6346)", "target.buff(6940)", "target.buff(1044)", "target.buff(6346)", "target.buff(17)", "target.buff(8936)" }, "target" },
Doesn't seem to work either.[/s]
Disregard that I wanted it to purge if any one of those conditions are met, but what I have is when they are ALL up. Fixed with a custom function and lib.
Last edited by Lightbrand; 01-18-2015 at 12:23 AM.
Is it possible for Probably to know if targets around me have a debuff? I know that weakauras can track DoTs on multiple units.