private static void OnGameLoad(EventArgs e) { if (Player.ChampionName != "Kalista") { return; } Q = new Spell(SpellSlot.Q, 1130); W = new Spell(SpellSlot.W, 5200); E = new Spell(SpellSlot.E, 1000); R = new Spell(SpellSlot.R, 1400f); Q.SetSkillshot(0.25f, 30f, 1700f, true, SkillshotType.SkillshotLine); Text = new Font(Drawing.Direct3DDevice, new FontDescription { FaceName = "Arial", Height = 35, Width = 12, Weight = FontWeight.Bold, OutputPrecision = FontPrecision.Default, Quality = FontQuality.Default }); root = new Menu("Manhkalista", "hkalista", true); draw = new Menu("Drawings Settings", "drawing"); Orbwalker = new Orbwalking.Orbwalker(root.SubMenu("Orbwalker Settings")); MenuManager.Create(); DamageIndicator.Init(Damage.GetEdamage); ee = new EarlyEvade(); AutoLevel.Init(); Game.OnUpdate += OnUpdate; Drawing.OnDraw += Drawing_OnDraw; Obj_AI_Base.OnProcessSpellCast += Helper.OnProcessSpellCast; Spellbook.OnCastSpell += Helper.OnCastSpell; }