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

Feral Cat / Skull Bash (Cat) and Ravage! wont work

handnavi

Well-Known Member
Joined
Jan 15, 2010
Messages
2,489
Reaction score
59
Hi!

I cant get Skull bash and Ravage! to work.

I've tried several solutions:

Code:
new TreeSharp.Action(a => WoWSpell.FromId(81170).Cast());
Code:
Spellmanager.Castspell("Ravage!")
Code:
Spellmanager.Castspell(81170)

The ID is correct, in an early HB-Version atleast the TreeSharp version has done the job.

With Skull Bash i have the same problem. Cant get it to work with the same methods.

Exists another way to cast a spell?
 
Can i cause the bot to write in chat like
Code:
/cast Ravage!
?
 
can you show a little more of your tree, so i know what context your putting it in?
 
can you show a little more of your tree, so i know what context your putting it in?

Code:
        public void Interrupt()
        {
            if (Me.CurrentTarget.IsCasting)
            {
                Thread.Sleep(50);
                SpellManager.Cast("Skull Bash(Cat)");  
                Logging.Write(Color.Red, "Skull Bash (Cat) " + Me.CurrentTarget.Name);
                return;
            }
        }

Code:
else if(Me.Auras.ContainsKey("Stampede") &&   Me.Auras["Stampede"].TimeLeft.Seconds < 4)
            {
                new TreeSharp.Action(a => WoWSpell.FromId(81170).Cast());
                Logging.Write(Color.LightBlue, "[" + Me.ComboPoints + " CP]" + "Ravage!");
            }
 
While working on a druid CC I had problems with Ravage! also. I never figured it out (even with a few ppl trying to help here on forums). I never tried with writing in chat although I suppose it would be possible:
PHP:
Lua.DoString(string.Format("RunMacroText(\"{0}\")", "/cast Ravage!"), 0);
 
While working on a druid CC I had problems with Ravage! also. I never figured it out (even with a few ppl trying to help here on forums). I never tried with writing in chat although I suppose it would be possible:
PHP:
Lua.DoString(string.Format("RunMacroText(\"{0}\")", "/cast Ravage!"), 0);

Thanks! Ill give it a try! :)
 
Back
Top