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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

maxown

Member
Joined
Sep 29, 2015
Messages
32
I'm getting weird behavior with interrupts since one of the last beta builds. My warrior will no longer use interrupts with the default code. It worked without issues up until some of the recent beta builds.

Code:
if (Target.IsCasting && Target.IsInCombat && await CastAny("Kick", "Grapple", "Flash Bang"))
                return true;

If I make them separate, it will use grapple correctly but won't use kick.

Code:
if (Target.IsCasting && Target.IsInCombat && await Cast("Kick"))
                return true;

if (Target.IsCasting && Target.IsInCombat && await Cast("Grapple"))
                return true;

If I just put kick without IsCasting and IsInCombat it will use it but obviously it is needed to be used when a target is casting.
 
Nvm all is good, I went total noob and forgot a "return true;" on something I added which ended up causing the issue.
 
Back
Top