Example #1
0
        public static void Combo()
        {
            if (MyMenu.IsChecked("Combo.R"))
            {
                MySpells.Rlogic();
            }
            if (MyMenu.IsChecked("Combo.E"))
            {
                MySpells.Elogic();
            }
            if (MyMenu.IsChecked("Combo.Q"))
            {
                if (MySpells.Qlogic(0, true))
                {
                    return;
                }
            }
            if (MyMenu.IsChecked("Combo.W"))
            {
                MySpells.Wlogic();
            }

            if (MySpells.Ignite != null && MyMenu.IsChecked("Combo.Ignite"))
            {
                MySpells.IgniteLogic();
            }
        }
Example #2
0
 public static void LaneClear()
 {
     if (LastHit())
     {
         return;
     }
     if (MyMenu.IsChecked("LaneClear.Q"))
     {
         MySpells.Qlogic(MyMenu.GetValue("LaneClear.QMana"));
     }
     if (MyMenu.IsChecked("LaneClear.E") && MyMenu.GetValue("LaneClear.EMana") < Cassio.Player.ManaPercent)
     {
         MySpells.Elogic(false, MyMenu.IsChecked("LaneClear.Ep"), true);
     }
 }
Example #3
0
        public static void Harass()
        {
            if (LastHit())
            {
                return;
            }

            if (MyMenu.IsChecked("Harass.Q"))
            {
                MySpells.Qlogic(MyMenu.GetValue("Harass.QMana"), true);
            }
            if (MyMenu.IsChecked("Harass.E"))
            {
                MySpells.Elogic(true, true);
            }
        }