Add /help, /rate

This commit is contained in:
Ceda EI 2019-02-12 03:50:29 +05:30
parent 4d2b2eb650
commit 56999fd89d
1 changed files with 6 additions and 0 deletions

View File

@ -37,5 +37,11 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ]) => {
bot.command("did", (ctx) => ctx.reply(is(random)(ctx)));
bot.command("should", (ctx) => ctx.reply(is(random)(ctx)));
bot.command("coin", (ctx) => ctx.reply(random(["Heads", "Tails"])()));
bot.command("help", (ctx) => ctx.reply("You can either check /commands "
+ "for a short overview or check the [Help Page]"
+ "(https://t.me/quadnite/9).", {parse_mode: "Markdown"}));
bot.command("rate", (ctx) => ctx.reply("[Vote for me on Telegram "
+ "Directory!](https://t.me/tgdrbot?start=quadnite_bot)", {parse_mode:
"Markdown"}));
};