Ejemplo n.º 1
0
        private static void Harass()
        {
            bool useQ = _menu.Item("hyunmi.lissandra.harass.spells.q").GetValue <bool>();
            bool useW = _menu.Item("hyunmi.lissandra.harass.spells.w").GetValue <bool>();
            bool useE = _menu.Item("hyunmi.lissandra.harass.spells.e").GetValue <bool>();

            ActiveModes.Harass();
        }
Ejemplo n.º 2
0
        //TODO: add manalimiters
        private static void LastHit()
        {
            bool smartPassive = _menu.Item("hyunmi.lissandra.lasthit.smartPassive").GetValue <bool>();
            bool groupFocus   = _menu.Item("hyunmi.lissandra.lasthit.groupfocus").GetValue <bool>();
            bool useQ         = _menu.Item("hyunmi.lissandra.lasthit.spells.q").GetValue <bool>();
            bool useW         = _menu.Item("hyunmi.lissandra.lasthit.spells.w").GetValue <bool>();
            bool useE         = _menu.Item("hyunmi.lissandra.lasthit.spells.e").GetValue <bool>();

            ActiveModes.LaneClear(smartPassive, groupFocus, useQ, useW, useE, false);
        }
Ejemplo n.º 3
0
        //TODO: add manalimiters
        private static void LaneClear()
        {
            bool smartPassive = _menu.Item("hyunmi.lissandra.laneclear.smartPassive").GetValue <bool>();
            bool groupFocus   = _menu.Item("hyunmi.lissandra.laneclear.groupfocus").GetValue <bool>();
            bool useQ         = _menu.Item("hyunmi.lissandra.laneclear.spells.q").GetValue <bool>();
            bool useW         = _menu.Item("hyunmi.lissandra.laneclear.spells.w").GetValue <bool>();
            bool useE         = _menu.Item("hyunmi.lissandra.laneclear.spells.e").GetValue <bool>();
            bool harass       = _menu.Item("hyunmi.lissandra.laneclear.harass").GetValue <bool>();

            ActiveModes.LaneClear(smartPassive, groupFocus, useQ, useW, useE, harass);
        }