Bastilla 2 Posted May 5, 2018 Share Posted May 5, 2018 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 More sharing options...
FNV316 64 Posted May 5, 2018 Share Posted May 5, 2018 (edited) //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 May 5, 2018 by FNV316 Link to comment Share on other sites More sharing options...
Bastilla 2 Posted May 5, 2018 Author Share Posted May 5, 2018 Thx for answer Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now