What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Problem with detecting "Dark Transformation" ready

  • Thread starter Thread starter weischbier
  • Start date Start date
W

weischbier

Guest
Hi,

Code:
if (Me.Combat)

                    if (Me.Pet.GotAlivePet & Me.Pet.ActiveAuras.ContainsKey("Dark Transformation"))
                    {
                        CastSpell("Dark Transformation");
                    }

HB isn't detecting "Dark Transformation" Procc when my Ghoul has it.
Maybe it is my Code or anything else. I don't know what is going wrong here.

greetz

Weischbier
 
shouldn't it look like this:

if (Me.Pet.GotAlivePet && Me.Pet.ActiveAuras.ContainsKey("Dark Transformation"))
 
doesn't make any difference.
"Shadow Infusion" that is the buff on the ghoul which has to be there + 5 Death Coil.
But i realised that there isn't any Procc...no procc on the pet and no procc on me.
It just gets activated and then you can cast it.

greetz
 
Back
Top