static LaneClear() { // Initialize the menu values LaneclearMenu.AddGroupLabel("LaneClear"); _useQ = LaneclearMenu.Add("laneQ", new CheckBox("Use Q")); _useW = LaneclearMenu.Add("laneW", new CheckBox("Use W")); _useE = LaneclearMenu.Add("laneE", new CheckBox("Use E")); LaneclearMenu.AddSeparator(); LaneclearMenu.AddGroupLabel("Laneclear Preferences:"); _useWminions = LaneclearMenu.Add("laneWminions", new Slider("Min. Minions for W", 3, 0, 10)); _useEtower = LaneclearMenu.Add("laneTower", new CheckBox("Use E on Tower")); _useQWEmana = LaneclearMenu.Add("laneMana", new Slider("Min. Mana for Laneclear Spells %", 30)); }
static LaneClear() { // Initialize the menu values LaneclearMenu.AddGroupLabel("LaneClear"); _useQ = LaneclearMenu.Add("laneQ", new CheckBox("Use Overload (Q Spell)")); _useW = LaneclearMenu.Add("laneW", new CheckBox("Use Rune Prison (W Spell)")); _useE = LaneclearMenu.Add("laneE", new CheckBox("Use Spell Flux (E Spell)")); _useR = LaneclearMenu.Add("laneR", new CheckBox("Use Desperate Power (R Spell)", false)); LaneclearMenu.AddSeparator(); LaneclearMenu.AddGroupLabel("LaneClear Preferences"); _useH = LaneclearMenu.Add("laneH", new CheckBox("Prioritize Harass instead of LastHit")); _useS = LaneclearMenu.Add("laneS", new CheckBox("Limit passive stacks", false)); _useS1 = LaneclearMenu.Add("laneS1", new Slider("Maximium stacks", 3, 1, 5)); _useQWER = LaneclearMenu.Add("laneQWER", new Slider("Min. Mana for Laneclear Spells %", 30)); }
private static void OnLoadingComplete(EventArgs args) { if (Player.Instance.ChampionName != "Camille") { return; } //Spells Q = new Spell.Active(SpellSlot.Q, 325); W = new Spell.Skillshot(SpellSlot.W, 630, SkillShotType.Cone, 250, 1750, 100, DamageType.Physical); { W.ConeAngleDegrees = 45; } E = new Spell.Skillshot(SpellSlot.E, 800, SkillShotType.Linear, 250, 500, 50, DamageType.Physical); R = new Spell.Targeted(SpellSlot.R, 800); // SpellList.Add(Q); SpellList.Add(W); SpellList.Add(E); SpellList.Add(R); //Items bilgewater = new Item(3144, 550); botrk = new Item(3153, 550); tiamat = new Item(3077, 400); hydra = new Item(3074, 400); Youmuu = new Item(3142, 800); titanic = new Item(3748, 0); //Potions HealthPotion = new Item(2003, 0); Biscuit = new Item(2010, 0); CorruptPotion = new Item(2033, 0); RefillPotion = new Item(2031, 0); HuntersPotion = new Item(2032, 0); //MainMenu CamilleMenu = MainMenu.AddMenu("CamilleZero", "CamilleZero"); //ComboMenu ComboMenu = CamilleMenu.AddSubMenu("Combo"); ComboMenu.AddGroupLabel("Combo Settings"); ComboMenu.Add("Q", new CheckBox("Use Q in Combo")); ComboMenu.Add("Q2", new CheckBox("Use Q2 for true DMG")); ComboMenu.Add("W", new CheckBox("Use W in Combo")); ComboMenu.Add("W2", new CheckBox("Only use outer range W")); ComboMenu.Add("E", new CheckBox("Use E in Combo")); ComboMenu.Add("R", new CheckBox("Use R in Combo")); ComboMenu.AddSeparator(); ComboMenu.AddLabel("Use R on:"); foreach (var Enemy in EntityManager.Heroes.Enemies) { ComboMenu.Add(Enemy.ChampionName, new CheckBox("Use R on " + Enemy.ChampionName)); } //LaneclearMenu LaneclearMenu = CamilleMenu.AddSubMenu("Laneclear"); LaneclearMenu.AddGroupLabel("Laneclear Settings"); LaneclearMenu.Add("QLC", new CheckBox("Use Q in Laneclear")); LaneclearMenu.Add("Q2LC", new CheckBox("Use Q2 in Laneclear")); LaneclearMenu.Add("WLC", new CheckBox("Use W in Laneclear")); //ItemsMenu ItemMenu = CamilleMenu.AddSubMenu("Items"); ItemMenu.AddGroupLabel("Item Settings"); ItemMenu.AddGroupLabel("Combo:"); ItemMenu.Add("bilge", new CheckBox("Use Bilgewater Cutlass in Combo")); ItemMenu.Add("youmuu", new CheckBox("Use Youmuu's in Combo")); ItemMenu.Add("tia", new CheckBox("Use Tiamat in Combo")); ItemMenu.Add("hydra", new CheckBox("Use Hydra in Combo")); ItemMenu.Add("titanic", new CheckBox("Use Titanic Hydra in Combo")); ItemMenu.Add("botrk", new CheckBox("Use BotrK in Combo")); ItemMenu.Add("bork", new Slider("%HP to use BotrK <=", 75, 0, 100)); ItemMenu.AddSeparator(); ItemMenu.AddGroupLabel("LaneClear/JungleClear:"); ItemMenu.Add("tialc", new CheckBox("Use Tiamat in Laneclear/JungleClear")); ItemMenu.Add("hydralc", new CheckBox("Use Hydra in Laneclear/JungleClear")); ItemMenu.Add("titaniclc", new CheckBox("Use Titanic Hydra in Laneclear/Jungleclear")); ItemMenu.AddSeparator(50); ItemMenu.Add("potion", new CheckBox("Auto Use Potion")); ItemMenu.Add("potionhp", new Slider("Use Auto Potion when %HP <=", 50, 0, 100)); //DrawMenu DrawMenu = CamilleMenu.AddSubMenu("Draw"); DrawMenu.AddGroupLabel("Draw Settings"); DrawMenu.Add("DrawW", new CheckBox("Draw W Range")); DrawMenu.Add("DrawE", new CheckBox("Draw E Range")); DrawMenu.Add("DrawR", new CheckBox("Draw R Range")); //SkinchangerMenu SkinMenu = CamilleMenu.AddSubMenu("Skinchanger"); SkinMenu.AddGroupLabel("Skin Settings"); SkinMenu.Add("SkinEnable", new CheckBox("Enable Skinchanger", false)); SkinMenu.Add("SkinID", new ComboBox("Skins:", 0, "Classic Camille", "Program Camille")); //Chatnotification Chat.Print("CamilleZero loaded successfully"); //Current Skin before choosing any CurrentSkin = User.SkinId; //Events Orbwalker.OnPostAttack += Orbwalker_OnPostAttack; Drawing.OnDraw += Drawing_OnDraw; Game.OnTick += Game_OnTick; }