using axXez.TS3.Bot; using axXez.Utils; class Program { static void Main(string[] args) { BotContext bot = new(); bot.OnStop += ConsoleMainThread.Close; bot.Start(); ConsoleMainThread.Block(src => { if (bot.Running) bot.Stop(); }); } }