Is there a fairly simple way to detect if a debuff on a mob belongs to my character? I typically use the simple line below to determine when to recast DoT's. However it obviously doesn't work well in a raiding situation because other people may cast the same DoT.
/if (${Target.PctHPs}>=25 && !${Target.Buff[Sunshock].ID} && ${Cast.Ready[10]}) /call MQ2Cast "Sunshock" gem10
Any better ways to handle this?

