Exemple #1
0
 static Other()
 {
     // Initialize the menu values
     LastHitMenu.AddGroupLabel("Misc Functions");
     _useQ   = OtherMenu.Add("miscQKS", new CheckBox("Use Overload (Q Spell) on KS"));
     _useWKS = OtherMenu.Add("miscWKS", new CheckBox("Use Rune Prison (W Spell) on KS"));
     _useEKS = OtherMenu.Add("miscEKS", new CheckBox("Use Spell Flux (E Spell) on KS"));
     _useW   = OtherMenu.Add("miscW", new CheckBox("Use Rune Prison (W Spell) on Gap"));
     _useR   = OtherMenu.Add("miscR", new CheckBox("Use Desperate Power (R Spell) on Gap"));
     _useM   = OtherMenu.Add("miscM", new Slider("Use Desperate Power (R Spell) for Flee if mana is higher than {0}(%)", 10, 1));
     _useS   = OtherMenu.Add("miscS", new CheckBox("Auto Stack Passive", false));
     _useS1  = OtherMenu.Add("miscS1", new CheckBox("Limit passive stacks", false));
     _useS2  = OtherMenu.Add("miscS2", new Slider("Maximium stacks", 2, 1, 5));
     _useS3  = OtherMenu.Add("miscS3", new Slider("Use Auto Stack Passive if mana is higher than {0}(%)", 10, 1));
 }
Exemple #2
0
                static Misc()
                {
                    // Initialize the menu values
                    OtherMenu.AddGroupLabel("Exclude E List");
                    foreach (var enemy in EntityManager.Heroes.Enemies)
                    {
                        OtherMenu.Add("dont e" + enemy.ChampionName,
                                      new CheckBox("Don't use E on " + enemy.ChampionName, false));
                    }

                    OtherMenu.AddGroupLabel("Interrupt/Gapcloser/KillSteal");
                    _Rint = OtherMenu.Add("rint", new CheckBox("Use R On Interruptable Spell"));
                    _Rgap = OtherMenu.Add("rgap", new CheckBox("Use R On GapCloser"));
                    OtherMenu.AddGroupLabel("Flee");
                    _fleeW = OtherMenu.Add("_fleeW", new CheckBox("Use W to flee"));
                    _fleeR = OtherMenu.Add("_fleeR", new CheckBox("Use R when you`re low health"));
                    OtherMenu.AddGroupLabel("KillSteal & Misc");
                    _Wks   = OtherMenu.Add("_wKs", new CheckBox("Killsteal with W", false));
                    _Rks   = OtherMenu.Add("_rKs", new CheckBox("Killsteal with R"));
                    _lvlUp = OtherMenu.Add("_lvlUp", new CheckBox("Auto Level Up Spells"));
                }