Ejemplo n.º 1
0
        public Other()
            : base()
        {
            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("Qcombo", new CheckBox("Use Q"));
            ModeMenu.Add("Wcombo", new CheckBox("Use W"));
            ModeMenu.Add("Ecombo", new CheckBox("Use E"));
            ModeMenu.Add("Rcombo", new CheckBox("Use R"));

            MiscMenu = PluginMenu.AddSubMenu("Misc", "Misc");
            MiscMenu.AddGroupLabel("Key Binds");
            MiscMenu.Add("Special", new KeyBind("Special", false, KeyBind.BindTypes.HoldActive, 'A'));
            MiscMenu.Add("Insec", new KeyBind("Insec", false, KeyBind.BindTypes.HoldActive, 'G'));
            MiscMenu.Add("FlashInsec", new CheckBox("->Use Flash Insec"));

            MiscMenu.AddGroupLabel("Settings");
            MiscMenu.Add("Gapcloser", new CheckBox("Gapcloser"));
            MiscMenu.Add("Interrupt", new CheckBox("Interrupt"));

            MiscMenu.AddGroupLabel("Kill Steal");
            MiscMenu.Add("Eks", new CheckBox("E Killsteal"));

            DrawMenu = PluginMenu.AddSubMenu("Drawing", "Drawing");
            DrawMenu.AddGroupLabel("Ability Ranges");
            DrawMenu.Add("Q", new CheckBox("Draw Q"));
            DrawMenu.Add("W", new CheckBox("Draw W"));
            DrawMenu.Add("E", new CheckBox("Draw E"));
            DrawMenu.Add("R", new CheckBox("Draw R"));

            Gapcloser.OnGapcloser            += OnGapCloser;
            Interrupter.OnInterruptableSpell += OnInterruptableSpell;
        }
Ejemplo n.º 2
0
        public Jayce()
            : base()
        {
            Qcharge = new Spell.Skillshot(SpellSlot.Q, 1650, SkillShotType.Linear, 25, 1600, 70);
            Q       = new Spell.Targeted(SpellSlot.Q, 600);
            W       = new Spell.Active(SpellSlot.W, 285);
            E       = new Spell.Targeted(SpellSlot.E, 240);
            Q2      = new Spell.Skillshot(SpellSlot.Q, 1030, SkillShotType.Linear, 25, 1200, 70)
            {
                MinimumHitChance = HitChance.High,
            };
            W2 = new Spell.Active(SpellSlot.W);
            E2 = new Spell.Skillshot(SpellSlot.E, 650, SkillShotType.Circular, 1, int.MaxValue, 120);
            R  = new Spell.Active(SpellSlot.R);

            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("Qcombo", new CheckBox("Kullan Q Çekic"));
            ModeMenu.Add("Q2combo", new CheckBox("Kullan Q Top"));
            ModeMenu.Add("Wcombo", new CheckBox("Kullan W Çekic"));
            ModeMenu.Add("W2combo", new CheckBox("Kullan W Top"));
            ModeMenu.Add("Ecombo", new CheckBox("Kullan E Çekic"));
            ModeMenu.Add("QEcombo", new CheckBox("Kullan QE Top"));
            ModeMenu.Add("Rcombo", new CheckBox("Formu Değiştir(R)"));

            ModeMenu.AddGroupLabel("Harass");
            ModeMenu.Add("Q2harass", new CheckBox("Kullan Q Top"));
            ModeMenu.Add("W2harass", new CheckBox("Kullan W Top"));
            ModeMenu.Add("QEharass", new CheckBox("Kullan QE Top"));

            MiscMenu = PluginMenu.AddSubMenu("Misc", "Misc");
            MiscMenu.AddGroupLabel("Key Binds");
            MiscMenu.Add("Quickscope", new KeyBind("Quickscope", false, KeyBind.BindTypes.HoldActive, 'A'));
            MiscMenu.Add("Insec", new KeyBind("Insec", false, KeyBind.BindTypes.HoldActive, 'G'));
            MiscMenu.Add("FlashInsec", new CheckBox("->Flash insec"));

            MiscMenu.AddGroupLabel("Ayarlar");
            MiscMenu.Add("Gapcloser", new CheckBox("Kullan E  Gapcloser"));
            MiscMenu.Add("Interrupt", new CheckBox("Kullan E  Interrupt"));
            MiscMenu.Add("GateMode", new ComboBox("QE Mode", 0, "Vertical Fast", "Horizontal Fast", "Horizontal Slow"));
            MiscMenu.Add("GateDistance", new Slider("E mesafesi", 60, 60, 100));

            MiscMenu.AddGroupLabel("Kill Steal");
            MiscMenu.Add("QEks", new CheckBox("QE Killçalma"));

            DrawMenu = PluginMenu.AddSubMenu("Drawing", "Drawing");
            DrawMenu.AddGroupLabel("Büyü Menzilleri");
            DrawMenu.Add("Q", new CheckBox("Göster Q Çekic"));
            DrawMenu.Add("Q2", new CheckBox("Göster Q Top"));
            DrawMenu.Add("Qcharge", new CheckBox("Göster QE Top"));

            DrawMenu.AddGroupLabel("Diğer");
            DrawMenu.Add("Drawcds", new CheckBox("Göster Bekleme Süreleri"));


            Gapcloser.OnGapcloser            += OnGapCloser;
            Interrupter.OnInterruptableSpell += OnInterruptableSpell;
        }
Ejemplo n.º 3
0
 static Nasus()
 {
     CreateMenu();
     ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
     ModeMenu.AddGroupLabel("Combo");
     ModeMenu.Add("nasus.combo.q", new CheckBox("Use Q"));
     ModeMenu.Add("nasus.combo.w", new CheckBox("Use W"));
     ModeMenu.Add("nasus.combo.e", new CheckBox("Use E"));
     ModeMenu.Add("nasus.combo.r", new CheckBox("Use R"));
 }
Ejemplo n.º 4
0
        public Viktor()
            : base()
        {
            Q = new Spell.Targeted(SpellSlot.Q, 600);

            W = new Spell.Skillshot(SpellSlot.W, 700, SkillShotType.Circular, 500, int.MaxValue, 300)
            {
                MinimumHitChance      = HitChance.High,
                AllowedCollisionCount = int.MaxValue
            };
            E = new Spell.Skillshot(SpellSlot.E, 525, SkillShotType.Linear, 250, int.MaxValue, 100)
            {
                MinimumHitChance      = HitChance.High,
                AllowedCollisionCount = int.MaxValue
            };
            R = new Spell.Skillshot(SpellSlot.R, 700, SkillShotType.Circular, 250, int.MaxValue, 450)
            {
                MinimumHitChance      = HitChance.High,
                AllowedCollisionCount = int.MaxValue
            };

            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("Qcombo", new CheckBox("Use Q"));
            ModeMenu.Add("Wcombo", new CheckBox("Use W", false));
            ModeMenu.Add("Ecombo", new CheckBox("Use E"));
            ModeMenu.Add("Rcombo", new CheckBox("Use R"));
            ModeMenu.Add("Ignite", new CheckBox("Use Ignite"));

            ModeMenu.AddGroupLabel("Harass");
            ModeMenu.Add("Qharass", new CheckBox("Use Q"));
            ModeMenu.Add("Eharass", new CheckBox("Use E"));

            MiscMenu = PluginMenu.AddSubMenu("Misc", "Misc");
            MiscMenu.AddGroupLabel("KillSteal");
            MiscMenu.Add("KillSteal", new CheckBox("Enable KillSteal"));
            MiscMenu.AddGroupLabel("Settings");
            MiscMenu.Add("Rtick", new Slider("R tick count for dmg calc", 4, 1, 14));
            MiscMenu.Add("Wteam", new CheckBox("Use W in team fight"));
            MiscMenu.Add("Wcount", new Slider("->If will hit", 2, 2, 5));
            MiscMenu.Add("Rteam", new CheckBox("Use Ult in team fight"));
            MiscMenu.Add("Rcount", new Slider("->If will hit", 3, 2, 5));

            DrawMenu = PluginMenu.AddSubMenu("Drawing", "Drawing");
            DrawMenu.AddGroupLabel("Ability Ranges");
            DrawMenu.Add("Q", new CheckBox("Draw Q"));
            DrawMenu.Add("W", new CheckBox("Draw W", false));
            DrawMenu.Add("E", new CheckBox("Draw E"));
            DrawMenu.Add("R", new CheckBox("Draw R"));
        }
Ejemplo n.º 5
0
        static LeeSin()
        {
            Q = new Spell.Skillshot(SpellSlot.Q, 1100, SkillShotType.Linear, 250, 1800, 75)
            {
                AllowedCollisionCount = 0
            };
            Q2 = new Spell.Active(SpellSlot.Q, 1300);
            W  = new Spell.Targeted(SpellSlot.W, 700);
            E  = new Spell.Active(SpellSlot.E, 350);
            R  = new Spell.Targeted(SpellSlot.R, 375);

            CreateMenu();
            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("nasus.combo.q", new CheckBox("Use Q"));
            ModeMenu.Add("nasus.combo.w", new CheckBox("Use W"));
            ModeMenu.Add("nasus.combo.e", new CheckBox("Use E"));
            ModeMenu.Add("nasus.combo.r", new CheckBox("Use R"));
        }
Ejemplo n.º 6
0
        static Jayce()
        {
            QE = new Spell.Skillshot(SpellSlot.Q, 1650, SkillShotType.Linear, 25, 1900, 70);
            Q  = new Spell.Targeted(SpellSlot.Q, 600);
            W  = new Spell.Active(SpellSlot.W, 285);
            E  = new Spell.Targeted(SpellSlot.E, 240);
            Q2 = new Spell.Skillshot(SpellSlot.Q, 1030, SkillShotType.Linear, 25, 1450, 70)
            {
                MinimumHitChance = HitChance.High
            };
            W2 = new Spell.Active(SpellSlot.W);
            E2 = new Spell.Skillshot(SpellSlot.E, 650, SkillShotType.Circular, 1, int.MaxValue, 120);
            R  = new Spell.Active(SpellSlot.R);

            CreateMenu();
            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("jayce.combo.q", new CheckBox("Kullan Q Cekic"));
            ModeMenu.Add("jayce.combo.q2", new CheckBox("Kullan Q Top"));
            ModeMenu.Add("jayce.combo.w", new CheckBox("Kullan W Cekic"));
            ModeMenu.Add("jayce.combo.w2", new CheckBox("Kullan W Top"));
            ModeMenu.Add("jayce.combo.e", new CheckBox("Kullan E Cekic"));
            ModeMenu.Add("jayce.combo.qe", new CheckBox("Kullan QE Top"));
            ModeMenu.Add("jayce.combo.r", new CheckBox("Gecis formu"));

            ModeMenu.AddGroupLabel("Harass");
            ModeMenu.Add("jayce.harass.q2", new CheckBox("Kullan Q Top"));
            ModeMenu.Add("jayce.harass.w2", new CheckBox("Kullan W Top"));
            ModeMenu.Add("jayce.harass.qe", new CheckBox("Kullan QE Top"));

            ModeMenu.AddGroupLabel("Flee");
            ModeMenu.Add("jayce.flee.q", new CheckBox("Kullan Q Cekic"));
            ModeMenu.Add("jayce.flee.e", new CheckBox("Kullan E Cekic"));
            ModeMenu.Add("jayce.flee.e2", new CheckBox("Kullan E Top"));

            MiscMenu = PluginMenu.AddSubMenu("Misc", "Misc");
            MiscMenu.AddGroupLabel("Key Binds");
            MiscMenu.Add("jayce.quickscope", new KeyBind("Quickscope", false, KeyBind.BindTypes.HoldActive, 'A'));
            MiscMenu.Add("jayce.insec", new KeyBind("Insec", false, KeyBind.BindTypes.HoldActive, 'G'));
            MiscMenu.Add("jayce.flashinsec", new CheckBox("->Kullan Sicra Insec"));

            MiscMenu.AddGroupLabel("Settings");
            MiscMenu.Add("jayce.gapcloser", new CheckBox("Kullan E Atilma yapana"));
            MiscMenu.Add("jayce.interrupt", new CheckBox("Kullan E kesici"));
            MiscMenu.Add("jayce.parallel", new CheckBox("Kapiyi paralel yerlestr", false));
            MiscMenu.Add("jayce.gatedistance", new Slider("Kapi uzakligi", 60, 60, 400));

            MiscMenu.AddGroupLabel("Kill Steal");
            MiscMenu.Add("jayce.killsteal.qe", new CheckBox("Kullan QE Top"));
            MiscMenu.Add("jayce.killsteal.q2", new CheckBox("Kullan Q Top"));
            MiscMenu.Add("jayce.killsteal.e", new CheckBox("Kullan E Cekic"));

            DrawMenu = PluginMenu.AddSubMenu("Drawing", "Drawing");
            DrawMenu.AddGroupLabel("Spell Ranges");
            DrawMenu.Add("jayce.draw.q", new CheckBox("Goster Q Cekic"));
            DrawMenu.Add("jayce.draw.q2", new CheckBox("Goster Q Top"));
            DrawMenu.Add("jayce.draw.qe", new CheckBox("Goster QE Top"));

            DrawMenu.AddGroupLabel("Other");
            DrawMenu.Add("jayce.draw.cds", new CheckBox("Goster Bekleme suresi"));

            Gapcloser.OnGapcloser            += OnGapCloser;
            Interrupter.OnInterruptableSpell += OnInterruptableSpell;
        }
Ejemplo n.º 7
0
        static Jayce()
        {
            QE = new Spell.Skillshot(SpellSlot.Q, 1650, SkillShotType.Linear, 25, 1900, 70);
            Q  = new Spell.Targeted(SpellSlot.Q, 600);
            W  = new Spell.Active(SpellSlot.W, 285);
            E  = new Spell.Targeted(SpellSlot.E, 240);
            Q2 = new Spell.Skillshot(SpellSlot.Q, 1030, SkillShotType.Linear, 25, 1450, 70)
            {
                MinimumHitChance = HitChance.High
            };
            W2 = new Spell.Active(SpellSlot.W);
            E2 = new Spell.Skillshot(SpellSlot.E, 650, SkillShotType.Circular, 1, int.MaxValue, 120);
            R  = new Spell.Active(SpellSlot.R);

            CreateMenu();
            ModeMenu = PluginMenu.AddSubMenu("Modes", "Modes");
            ModeMenu.AddGroupLabel("Combo");
            ModeMenu.Add("jayce.combo.q", new CheckBox("Use Q Hammer"));
            ModeMenu.Add("jayce.combo.q2", new CheckBox("Use Q Cannon"));
            ModeMenu.Add("jayce.combo.w", new CheckBox("Use W Hammer"));
            ModeMenu.Add("jayce.combo.w2", new CheckBox("Use W Cannon"));
            ModeMenu.Add("jayce.combo.e", new CheckBox("Use E Hammer"));
            ModeMenu.Add("jayce.combo.qe", new CheckBox("Use QE Cannon"));
            ModeMenu.Add("jayce.combo.r", new CheckBox("Switch Form"));

            ModeMenu.AddGroupLabel("Harass");
            ModeMenu.Add("jayce.harass.q2", new CheckBox("Use Q Cannon"));
            ModeMenu.Add("jayce.harass.w2", new CheckBox("Use W Cannon"));
            ModeMenu.Add("jayce.harass.qe", new CheckBox("Use QE Cannon"));

            ModeMenu.AddGroupLabel("Flee");
            ModeMenu.Add("jayce.flee.q", new CheckBox("Use Q Hammer"));
            ModeMenu.Add("jayce.flee.e", new CheckBox("Use E Hammer"));
            ModeMenu.Add("jayce.flee.e2", new CheckBox("Use E Cannon"));

            MiscMenu = PluginMenu.AddSubMenu("Misc", "Misc");
            MiscMenu.AddGroupLabel("Key Binds");
            MiscMenu.Add("jayce.quickscope", new KeyBind("Quickscope", false, KeyBind.BindTypes.HoldActive, 'A'));
            MiscMenu.Add("jayce.insec", new KeyBind("Insec", false, KeyBind.BindTypes.HoldActive, 'G'));
            MiscMenu.Add("jayce.flashinsec", new CheckBox("->Use Flash Insec"));

            MiscMenu.AddGroupLabel("Settings");
            MiscMenu.Add("jayce.gapcloser", new CheckBox("Use E on Gapcloser"));
            MiscMenu.Add("jayce.interrupt", new CheckBox("Use E to Interrupt"));
            MiscMenu.Add("jayce.parallel", new CheckBox("Place gate parallel", false));
            MiscMenu.Add("jayce.gatedistance", new Slider("Gate Distance", 60, 60, 400));

            MiscMenu.AddGroupLabel("Kill Steal");
            MiscMenu.Add("jayce.killsteal.qe", new CheckBox("Use QE Cannon"));
            MiscMenu.Add("jayce.killsteal.q2", new CheckBox("Use Q Cannon"));
            MiscMenu.Add("jayce.killsteal.e", new CheckBox("Use E Hammer"));

            DrawMenu = PluginMenu.AddSubMenu("Drawing", "Drawing");
            DrawMenu.AddGroupLabel("Spell Ranges");
            DrawMenu.Add("jayce.draw.q", new CheckBox("Draw Q Hammer"));
            DrawMenu.Add("jayce.draw.q2", new CheckBox("Draw Q Cannon"));
            DrawMenu.Add("jayce.draw.qe", new CheckBox("Draw QE Cannon"));

            DrawMenu.AddGroupLabel("Other");
            DrawMenu.Add("jayce.draw.cds", new CheckBox("Draw Cooldowns"));

            Gapcloser.OnGapcloser            += OnGapCloser;
            Interrupter.OnInterruptableSpell += OnInterruptableSpell;
        }