public static void Main() { if (ObjectManager.Player.ChampionName.Equals("Leblanc")) { Bootstrap.Initialize(); var s = new LeBlanc(); } }
private static void Main(string[] args) { CustomEvents.Game.OnGameLoad += eventArgs => { if (ObjectManager.Player.ChampionName.Equals("Leblanc")) { Bootstrap.Initialize(); var s = new LeBlanc(); } }; }