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

question how to use spell id: 81170

Mahlesseh

New Member
Joined
Mar 18, 2011
Messages
78
Reaction score
0
I want my toon to use Ravage after he has done Feral Charge and has the Stampede Buff. Seems that the normal spellname is bugged and i want to try it by spell id. Can anyone tell me how to make this work in my code??

Got this:

Code:
            if (Me.ActiveAuras.ContainsKey("Stampede"))
            {
                CastSpell("Ravage");
            }

Thanks in advance!
 
Durid has it, so it can be done. But that is in another form. Don't know how to do it in this form.....
 
isnt it CastSpellByID(81170)
i dont have visual studio with me so dont take it as is but its something similar to that
 
Spellmanger.Cast(81170);

or you can define it and type it in if your hell bent on using the ID
public static int UnendingBreath = 5697; <--Setting the SpellID# in a Variable can make it easyer to use later if you plan on using it a lot in your code.
Spellmanger.Cast(UnendingBreath); <---Does the same as Spellmanger.Cast(81170); and is NOT the same as SpellManger.Cast("Unending Breath");
 
Spellmanger.Cast(81170);

or you can define it and type it in if your hell bent on using the ID
public static int UnendingBreath = 5697; <--Setting the SpellID# in a Variable can make it easyer to use later if you plan on using it a lot in your code.
Spellmanger.Cast(UnendingBreath); <---Does the same as Spellmanger.Cast(81170); and is NOT the same as SpellManger.Cast("Unending Breath");

Thanks for the help, but this isn't working for me. I think it is somehow bugged. If i try to write some interrupt in it with skull bash the script starts to become bugged aswell. It does interrupt (only with spell id) but then pauses for a very long time. after that it pauses every time the mob casts.
 
Thanks for the help, but this isn't working for me. I think it is somehow bugged. If i try to write some interrupt in it with skull bash the script starts to become bugged aswell. It does interrupt (only with spell id) but then pauses for a very long time. after that it pauses every time the mob casts.
post your whole project, chances are you have something else going on.
 
Back
Top