Exemple #1
0
        public static void OnGameLoad()
        {
            if (ObjectManager.Player.ChampionName.ToLower() != "soraka")
            {
                return;
            }

            Spells.LoadSpells();
            Config.BuildMenu();
            Mainframe.Init();
        }
Exemple #2
0
        private static void OnLoadingComplete(EventArgs args)
        {
            if (ObjectManager.Player.ChampionName.ToLower() != "soraka")
            {
                return;
            }

            Bootstrap.Init(null);
            Config.CallMenu();
            Spells.LoadSpells();
            Mainframe.Init();
        }