Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 370 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 370 Bytes

Rubika

How Use It?

Create an instace of IBot

IBot _bot = new Bot("auth");

Now you can use bot functions

Get new messages from chat

await _bot.CreateBotAsync(async(msg)=>{
if(msg.Status == ActionStatus.Success)
{
   await _bot.SendMessage("message",replyId,"chatToken");
   await _bot.SnedMessage("message",null,null);
}
},"chatToken");