Jump to content

Fightclass Healing Touch Rank


Recommended Posts

Hello,

 

i download serveral c# fightprofiles but i don't find a method to use a spell with rank. I want to spell healing touch rank 2 when my healthpercent > 50 < 65 and rank 3 wenn my healthpercent < 50

 

Can you pls help me?

Link to comment
Share on other sites

//Healing Touch Rank 3
if(ObjectManager.Me.HealthPercent < 50)
{
   wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(5187);
}

//Healing Touch Rank 2
if(ObjectManager.Me.HealthPercent < 65)
{
   wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(5186);
}

 

Edited by FNV316
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...