static Harass() { // Initialize the menu values ModesMenu.AddGroupLabel("Harass"); _useQ = ModesMenu.Add("harassQ", new CheckBox("Use Q")); _useE = ModesMenu.Add("harassE", new CheckBox("Use E")); _modeE = ModesMenu.Add("modeHarassE", new Slider("Which E to use", 1, 0, 1)); ModesMenu.AddLabel("If the slider is 0 it will push,If it is 1 it will pull"); }
static Combo() { // Initialize the menu values ModesMenu.AddGroupLabel("Combo"); _useQ = ModesMenu.Add("comboQ", new CheckBox("Use Q")); _useW = ModesMenu.Add("comboW", new CheckBox("Use W")); _useE = ModesMenu.Add("comboE", new CheckBox("Use E")); _modeE = ModesMenu.Add("modeE", new Slider("Which E to use", 1, 0, 1)); ModesMenu.AddLabel("If the slider is 0 it will push,If it is 1 it will pull"); _useR = ModesMenu.Add("comboR", new CheckBox("Use R")); _minR = ModesMenu.Add("minR", new Slider("Which E to use", 2, 1, 5)); }
static Misc() { // Initialize the menu values ModesMenu.AddGroupLabel("Misc"); _autoA = ModesMenu.Add("autoA", new CheckBox("Auto AA if target(Only heroes) is netted or trapped")); ModesMenu.AddSeparator(5); _autoQ = ModesMenu.Add("autoQ", new CheckBox("Auto Q if target is CC'ed")); _autoW = ModesMenu.Add("autoW", new CheckBox("Auto W if target is CC'ed")); ModesMenu.AddGroupLabel("KS"); ModesMenu.AddLabel("Hold it until it ults", 35); _keyR = ModesMenu.Add("keyR", new KeyBind("Key to use R when targets are killable", false, KeyBind.BindTypes.HoldActive, 'Z')); }