예제 #1
0
        private static void JumpWall()
        {
            if (RivenMenu.CheckBox(RivenMenu.Misc, ("JumpFlee")) && Game.MapId == GameMapId.SummonersRift)
            {
                var spot = WallJump.GetJumpSpot();
                if (spot != null && Riven.CountQ == 2 || Q.IsReady())
                {
                    Orbwalker.DisableAttacking = true;
                    Orbwalker.DisableMovement  = true;

                    WallJump.JumpWall();
                    return;
                }
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: tekintr/Elobuddy
        private static void Loading_OnLoadingComplete(EventArgs args)
        {
            if (Player.Instance.ChampionName != "Riven")
            {
                return;
            }

            RivenMenu.Load();
            Riven.Load();
            ItemLogic.Init();
            if (Game.MapId == GameMapId.SummonersRift)
            {
                WallJump.InitSpots();
            }
        }