I can't just do this
public static void myBot_OnMessage(object sender, Telegram.Bot.Args.MessageEventArgs msg)
{
if (DateTime.Now.Hour == 01)
{
myBot.SendTextMessageAsync(msg.Message.Chat.Id, "Good Night");
}
}
Because that requires the user to first send a message at that exact time for them to receive the message. How can i make it autosend a message at a specific to anyone who ever started it without the person having to send message the exact time it would send the automatic message?