• Visit Rebornbuddy
  • Interrupt

    Discussion in 'Rebornbuddy Forum' started by Farnsworth, Jan 1, 2014.

    1. Farnsworth

      Farnsworth New Member

      Joined:
      Dec 30, 2013
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    2. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      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.
       

    Share This Page