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 https://wrobot.eu/forums/topic/9333-fightclass-healing-touch-rank/ Share on other sites More sharing options...
FNV316 65 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 https://wrobot.eu/forums/topic/9333-fightclass-healing-touch-rank/#findComment-43257 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 https://wrobot.eu/forums/topic/9333-fightclass-healing-touch-rank/#findComment-43258 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