예제 #1
0
        public void Run()
        {
            Vector2 drakeWallQPos = new Vector2(11514, 4462);

            if (ObjectManager.Player.Position.X < 12000 || ObjectManager.Player.Position.X > 12070 || ObjectManager.Player.Position.Y < 4800 ||
                ObjectManager.Player.Position.Y > 4872)
            {
                VHRHelpers.MoveToLimited(new Vector2(12050, 4827).ToVector3());
            }
            else
            {
                VHRHelpers.MoveToLimited(new Vector2(12050, 4827).ToVector3());
                VHR.spells[SpellSlot.Q].Cast(drakeWallQPos);
            }
        }
예제 #2
0
 public bool ShouldRun()
 {
     return(VHR.VHRMenu["dz191.vhr.misc"]["dz191.vhr.misc.tumble"]["walltumble"].GetValue <MenuKeyBind>().Active&& VHR.spells[SpellSlot.Q].IsReady() && VHRHelpers.IsSummonersRift());
 }