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!

Interrupt

Farnsworth

New Member
Joined
Dec 30, 2013
Messages
3
Anyone figured out a way to cast an interrupt, for instance I want to use Blunt Arrow on a target when they are casting to silence them.
 
Put this at the top of the priority selector.

Code:
Cast("Blunt Arrow", r => KeyboardPolling.IsKeyDown(Keys.LShiftKey), r => Core.Player.CurrentTarget),

Anytime you're holding the left shift key it'll use blunt arrow whenever it reevaluates what to cast next. You can change Keys.LShiftKey to Keys.F, Keys.4 or whatever you want. Easiest way i've found, obviously this only works with Raidbro.
 
Back
Top