var TGBOT = require("./tg");
var bot = new TGBOT({
token: 'c8763',
help: true
});
bot.addCmd('owo', function(message, args) {
var text = args[0]
message.replyMsg(args[0]).onReply(function(newMsg, myMsg) {
text += "\n" + newMsg.from.username + " : " + newMsg.text;
myMsg.editText(text);
});
}, 'owo');
bot.start();