blueballs 0 Posted October 25, 2017 Share Posted October 25, 2017 I set my character health percent as condition when to use Divine Shield, but it fails to launch if at the same time im casting holy light. I'm using Spell.Launch(). How i can stop casting in C#? Link to comment https://wrobot.eu/forums/topic/7483-canceling-cast/ Share on other sites More sharing options...
Apexx 60 Posted October 26, 2017 Share Posted October 26, 2017 Lua.RunMacroText("/stopcasting"); Maybe something like this: private readonly Spell DivineShield = new Spell("Divine Shield"); // Divine Shield if (ObjectManager.Me.HealthPercent < 30 && ObjectManager.Me.IsCast && DivineShield.KnownSpell && DivineShield.IsSpellUsable) { Lua.RunMacroText("/stopcasting"); DivineShield.Launch(); } Link to comment https://wrobot.eu/forums/topic/7483-canceling-cast/#findComment-34115 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