private static void On_LoadGame() { // remove Update check //try { Update.Check(); } //catch { } Game.Print("Supported Champions: Alistar, Blitz, Lux, Morgana, Pyke, Soraka, Thresh"); Game.Print("SPrediction Port By Mask"); if (ObjectManager.Player.CharacterName == "Soraka") { Soraka.Load(); Game.Print("Soraka Script Load"); } else if (ObjectManager.Player.CharacterName == "Blitzcrank") { Blitz.BlitzOnLoad(); Game.Print("Blitzcrank Script Load"); Game.Print("This script is a Port of KurisuBlitz (Code of Kurisu)"); } else if (ObjectManager.Player.CharacterName == "Lux") { Lux.Load(); Game.Print("Partial Port of ChewyMoon Lux Load"); } else if (ObjectManager.Player.CharacterName == "Pyke") { Pyke.On_Load(); Game.Print("011110001.Pyke Load"); } else if (ObjectManager.Player.CharacterName == "Thresh") { Thresh.OnLoad(); Game.Print("011110001.Thresh Load"); } else if (ObjectManager.Player.CharacterName == "Alistar") { Alistar.OnLoad(); } else if (ObjectManager.Player.CharacterName == "Morgana") { Morgana.OnLoad(); Game.Print("Morgana Script Load"); Game.Print("This script is a Port of Kurisu Morgana (Code of Kurisu)"); } }
private static void OnGameLoad() { Game.Print("Supported Champions: Alistar, Blitz, Lux, Morgana, Pyke, Soraka, Thresh"); Game.Print("SPrediction Port By Mask"); if (ObjectManager.Player.CharacterName == "Soraka") { Soraka.Load(); Game.Print("Soraka Script Load"); } else if (ObjectManager.Player.CharacterName == "Blitzcrank") { Blitz.BlitzOnLoad(); Game.Print("Blitzcrank Script Load"); Game.Print("This script is a Port of KurisuBlitz (Code of Kurisu)"); } else if (ObjectManager.Player.CharacterName == "Lux") { Lux.Load(); Game.Print("Partial Port of ChewyMoon Lux Load"); } else if (ObjectManager.Player.CharacterName == "Pyke") { Pyke.On_Load(); Game.Print("011110001.Pyke Load"); } else if (ObjectManager.Player.CharacterName == "Thresh") { Thresh.OnLoad(); Game.Print("011110001.Thresh Load"); } else if (ObjectManager.Player.CharacterName == "Alistar") { Alistar.OnLoad(); } else if (ObjectManager.Player.CharacterName == "Morgana") { Morgana.OnLoad(); Game.Print("Morgana Script Load"); Game.Print("This script is Fixed By Memory"); Notifications.Add(new Notification("Easy Support Fixed By Memory", "Credit Memory")); } }
private static void On_LoadGame() { logo = new Render.Sprite(LoadImg("lgo"), new Vector2(Drawing.Width / 2 - 250, Drawing.Height / 2 - 250)); logo.Add(0); logo.OnDraw(); DelayAction.Add(7000, () => logo.Remove()); Chat.PrintChat("Supported Champions: Blitz , Soraka, Lux, Pyke"); Chat.PrintChat("SPrediction Port By Mask"); if (ObjectManager.Player.CharacterName == "Soraka") { Soraka.Load(); Chat.PrintChat("Soraka Script Load"); } else if (ObjectManager.Player.CharacterName == "Blitzcrank") { Blitz.BlitzOnLoad(); Chat.PrintChat("Blitzcrank Script Load"); Chat.PrintChat("This script is a Port of KurisuBlitz (Code of Kurisu)"); } else if (ObjectManager.Player.CharacterName == "Lux") { Lux.Load(); Chat.PrintChat("Partial Port of ChewyMoon Lux Load"); } else if (ObjectManager.Player.CharacterName == "Pyke") { Pyke.On_Load(); Chat.PrintChat("011110001.Pyke Load"); } else if (ObjectManager.Player.CharacterName == "Thresh") { Thresh.OnLoad(); Chat.PrintChat("011110001.Thresh Load"); } else if (ObjectManager.Player.CharacterName == "Alistar") { Alistar.OnLoad(); } }