public static void MyActivatorPage() { MyActivator = MyMenu.AddSubMenu("Items Settings", "Items"); MyActivator.AddGroupLabel("Items usage:"); MyActivator.AddSeparator(); MyActivator.Add("items.sliderHP", new Slider("Use items when HP is lower than {0}(%)", 30, 1, 100)); MyActivator.Add("items.enemiesinrange", new Slider("Use items when there are {0} enemies in range", 3, 1, 5)); MyActivator.AddSeparator(); MyActivator.AddLabel("Items avaible to use with Activator:"); MyActivator.Add("talisman", new CheckBox("Use Talisman of Ascension")); MyActivator.Add("randuin", new CheckBox("Use Randuin")); MyActivator.Add("glory", new CheckBox("Use Righteous Glory")); MyActivator.Add("fotmountain", new CheckBox("Use Face of the Mountain")); MyActivator.Add("mikael", new CheckBox("Use Mikaels Crucible")); MyActivator.Add("ironsolari", new CheckBox("Use Locket of the Iron Solari")); MySpells = MyMenu.AddSubMenu("Spells Settings"); MySpells.AddGroupLabel("Spells settings:"); MySpells.Add("useexhaust", new CheckBox("Use Exhaust on:")); foreach (var source in ObjectManager.Get <AIHeroClient>().Where(a => a.IsEnemy)) { MySpells.Add(source.ChampionName + "exhaust", new CheckBox("Exhaust " + source.ChampionName, false)); } MySpells.AddSeparator(); MySpells.AddGroupLabel("Heal settings:"); MySpells.Add("spells.Heal.Hp", new Slider("Use Heal when HP is lower than {0}(%)", 30, 1, 100)); MySpells.AddGroupLabel("Ignite settings:"); MySpells.Add("spell.Ignite.Use", new CheckBox("Use Ignite for KillSteal")); MySpells.Add("spells.Ignite.Focus", new Slider("Use Ignite when target HP is lower than {0}(%)", 10, 1, 100)); MySpells.Add("spells.Ignite.Kill", new CheckBox("Use ignite if killable")); }
public static void MyActivatorPage() { MySpells = MyMenu.AddSubMenu("Spells Settings"); MySpells.AddSeparator(); MySpells.AddGroupLabel("Heal settings:"); MySpells.Add("spells.Heal.Hp", new Slider("Use Heal when HP is lower than {0}(%)", 30, 1, 100)); MySpells.AddGroupLabel("Ignite settings:"); MySpells.Add("spells.Ignite.Focus", new Slider("Use Ignite when target HP is lower than {0}(%)", 10, 1, 100)); MySpells.AddGroupLabel("Barrier settings:"); MySpells.Add("spells.Barrier.Hp", new Slider("Use Barrier when HP is lower than {0}(%)", 10, 1, 100)); MySpells.AddGroupLabel("Zhonya settings:"); MySpells.Add("spells.Zhonya.Check", new CheckBox("Use Zhonya", false)); MySpells.Add("spells.Zhonya.Hp", new Slider("Use Zhonya when HP is lower than {0}(%)", 10, 1, 100)); MySpells.Add("spells.Zhonya.Enemies", new Slider("Use Zhonya when there are min {0} enemies", 3, 1, 5)); }
public static void MyActivatorPage() { MyActivator = MyMenu.AddSubMenu("Items Settings", "Items"); MyActivator.AddLabel("Items avaible to use with Activator:"); MyActivator.Add("talisman", new CheckBox("Use Talisman of Ascension")); MyActivator.Add("randuin", new CheckBox("Use Randuin")); MyActivator.Add("glory", new CheckBox("Use Righteous Glory")); MyActivator.Add("fotmountain", new CheckBox("Use Face of the Mountain")); MyActivator.Add("mikael", new CheckBox("Use Mikaels Crucible")); MyActivator.Add("ironsolari", new CheckBox("Use Locket of the Iron Solari")); MyActivator.Add("items.sliderHP", new Slider("Use items when HP is lower than {0}(%)", 30, 1, 100)); MyActivator.Add("items.enemiesinrange", new Slider("Use items when there are {0} enemies in range", 3, 1, 5)); MyActivator.Add("bilgewater", new CheckBox("Use Bilgewater Cutlass")); MyActivator.Add("bilgewater.HP", new Slider("Use Bilgewater Cutlass if hp is lower than {0}(%)", 60, 0, 100)); MyActivator.Add("botrk", new CheckBox("Use Blade of The Ruined King")); MyActivator.Add("botrk.HP", new Slider("Use Blade of The Ruined King if hp is lower than {0}(%)", 60, 0, 100)); MyActivator.Add("youmus", new CheckBox("Use Youmus Ghostblade")); MyActivator.Add("items.Youmuss.HP", new Slider("Use Youmuss Ghostblade if hp is lower than {0}(%)", 60, 1, 100)); MyActivator.Add("youmus.Enemies", new Slider("Use Youmus Ghostblade when there are {0} enemies in range", 3, 1, 5)); MyActivator.AddSeparator(); MySpells = MyMenu.AddSubMenu("Spells Settings"); MySpells.AddSeparator(); MySpells.AddGroupLabel("Smite settings"); MySpells.Add("SRU_Red", new CheckBox("Smite Red Buff")); MySpells.Add("SRU_Blue", new CheckBox("Smite Blue Buff")); MySpells.Add("SRU_Dragon", new CheckBox("Smite Dragon")); MySpells.Add("SRU_Baron", new CheckBox("Smite Baron")); MySpells.Add("SRU_Gromp", new CheckBox("Smite Gromp")); MySpells.Add("SRU_Murkwolf", new CheckBox("Smite Wolf")); MySpells.Add("SRU_Razorbeak", new CheckBox("Smite Bird")); MySpells.Add("SRU_Krug", new CheckBox("Smite Golem")); MySpells.Add("Sru_Crab", new CheckBox("Smite Crab")); MySpells.AddGroupLabel("Spells settings:"); MySpells.AddSeparator(); MySpells.AddGroupLabel("Heal settings:"); MySpells.Add("spells.Heal.Hp", new Slider("Use Heal when HP is lower than {0}(%)", 30, 1, 100)); MySpells.AddGroupLabel("Ignite settings:"); MySpells.Add("spells.Ignite.Focus", new Slider("Use Ignite when target HP is lower than {0}(%)", 10, 1, 100)); }
private static void MyActivatorPage() { MyActivator = MyMenu.AddSubMenu("Activator Settings", "Items"); MyActivator.AddGroupLabel("Auto QSS if :"); MyActivator.Add("Blind", new CheckBox("Blind", false)); MyActivator.Add("Charm", new CheckBox("Charm")); MyActivator.Add("Fear", new CheckBox("Fear")); MyActivator.Add("Polymorph", new CheckBox("Polymorph")); MyActivator.Add("Stun", new CheckBox("Stun")); MyActivator.Add("Snare", new CheckBox("Snare")); MyActivator.Add("Silence", new CheckBox("Silence", false)); MyActivator.Add("Taunt", new CheckBox("Taunt")); MyActivator.Add("Suppression", new CheckBox("Suppression")); MyActivator.AddGroupLabel("Ults"); MyActivator.Add("ZedUlt", new CheckBox("Zed Ult")); MyActivator.Add("VladUlt", new CheckBox("Vlad Ult")); MyActivator.Add("FizzUlt", new CheckBox("Fizz Ult")); MyActivator.Add("MordUlt", new CheckBox("Mordekaiser Ult")); MyActivator.Add("PoppyUlt", new CheckBox("Poppy Ult")); MyActivator.AddGroupLabel("Items usage:"); MyActivator.AddSeparator(); MyActivator.Add("items.sliderHP", new Slider("Use items when HP is lower than {0}(%)", 30, 1, 100)); MyActivator.Add("items.enemiesinrange", new Slider("Use items when there are {0} enemies in range", 3, 1, 5)); MyActivator.AddSeparator(); MyActivator.AddLabel("Items avaible to use with Activator:"); MyActivator.Add("randuin", new CheckBox("Use Randuin")); MyActivator.Add("glory", new CheckBox("Use Righteous Glory")); MyActivator.Add("bilgewater", new CheckBox("Use Bilgewater Cutlass")); MyActivator.Add("botrk", new CheckBox("Use Blade of The Ruined King")); MyActivator.Add("youmus", new CheckBox("Use Youmus Ghostblade")); MyActivator.Add("hydra", new CheckBox("Use Hydra")); MyActivator.Add("tiamat", new CheckBox("Use Tiamat")); MySpells = MyMenu.AddSubMenu("Spells Settings"); MySpells.AddGroupLabel("Smite settings"); MySpells.AddSeparator(); MySpells.Add("SRU_Red", new CheckBox("Smite Red Buff")); MySpells.Add("SRU_Blue", new CheckBox("Smite Blue Buff")); MySpells.Add("SRU_Dragon", new CheckBox("Smite Dragon")); MySpells.Add("SRU_Baron", new CheckBox("Smite Baron")); MySpells.Add("SRU_Gromp", new CheckBox("Smite Gromp")); MySpells.Add("SRU_Murkwolf", new CheckBox("Smite Wolf")); MySpells.Add("SRU_Razorbeak", new CheckBox("Smite Bird")); MySpells.Add("SRU_Krug", new CheckBox("Smite Golem")); MySpells.Add("Sru_Crab", new CheckBox("Smite Crab")); MySpells.AddSeparator(); MySpells.AddGroupLabel("Heal settings:"); MySpells.Add("spells.Heal.Hp", new Slider("Use Heal when HP is lower than {0}(%)", 30, 1, 100)); MySpells.AddGroupLabel("Ignite settings:"); MySpells.Add("spell.Ignite.Use", new CheckBox("Use Ignite for KillSteal")); MySpells.Add("spells.Ignite.Focus", new Slider("Use Ignite when target HP is lower than {0}(%)", 10, 1, 100)); MySpells.Add("spells.Ignite.Kill", new CheckBox("Use ignite if killable")); }