mirror of
https://gitlab.com/ceda_ei/Quadnite-Bot
synced 2026-05-06 05:40:04 +02:00
Disallow insult / kys on bot
This commit is contained in:
@@ -4,12 +4,24 @@ const is = require("./is");
|
||||
module.exports = (bot, [ questions, kys, insults, commands_list ]) => {
|
||||
|
||||
bot.command("question", (ctx) => ctx.reply(random(questions)()));
|
||||
bot.telegram.getMe()
|
||||
.then(bot_user => {
|
||||
|
||||
const default_text = (command, text) => `Do you want to ${text} yourself?\n`
|
||||
+ `If no, reply to someone with /${command} to kill them or run /${command} username/name.\n`
|
||||
+ `You can suggest more /${command} replies using /feedback`;
|
||||
bot.command("insult", (ctx) => ctx.reply(insults_fun(random, insults, default_text("insult", "insult"))(ctx)));
|
||||
bot.command("kys", (ctx) => ctx.reply(insults_fun(random, kys, default_text("kys", "kill"))(ctx)));
|
||||
console.log(bot_user);
|
||||
const default_text = (command, text) => `Do you want to ${text} `
|
||||
+ `yourself?\nIf no, reply to someone with /${command} to kill`
|
||||
+ ` them or run /${command} username/name.\nYou can suggest `
|
||||
+ `more /${command} replies using /feedback`;
|
||||
|
||||
bot.command("insult", (ctx) => ctx.reply(insults_fun(random,
|
||||
insults, default_text("insult", "insult"), "Watch who you talk"
|
||||
+ " to.", ["@" + bot_user.username, bot_user.firstName])(ctx)));
|
||||
|
||||
bot.command("kys", (ctx) => ctx.reply(insults_fun(random, kys,
|
||||
default_text("kys", "kill"), "I can't be killed.",
|
||||
["@" + bot_user.username, bot_user.firstName])(ctx)));
|
||||
|
||||
});
|
||||
|
||||
bot.command("commands", (ctx) => ctx.reply(commands_list.join("\n")));
|
||||
bot.command("is", (ctx) => ctx.reply(is(random)(ctx)));
|
||||
|
||||
Reference in New Issue
Block a user