Need help for BoP Macro

Hi!
I am trying to write an macro for my BoP. Which casts BoP by mouseover or over the targettarget but it shouldn’t cast it on myself by the targettarget condition.
My actual macro is:

#showtooltip
/cancelaura Blessing of Protection
/cast [mod:alt,@player] [@mouseover,help,nodead] [help] [@targettarget,help,nodead] [@none] Blessing of Protection
/stopspelltarget

Is there a way to implement an condition, that the macro is not executed on me exept with the given selfcast modifier? (Maybe with /stopmacro if targettarget = Tropen)
I guess it would be also fine if it is unable to cast on myself, then i could remove the cancelaura etc.

Thanks in advance!

Not possible. You can’t test if a unit is a specific unit.

oh damn, thanks for your answer.
I guess than i should only mouseover it :frowning:

I’d get rid of the targettarget and just do mouseover + target, yeah.

#showtooltip
/cancelaura Blessing of Protection
/cast [mod:alt,@player] [@mouseover,help,nodead] [@target] Blessing of Protection

Using @target as the last condition set will make it not fall back to default casting rules. Saves a bit of space.

Ah okay cool, didn’t know that with the last condition :>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.