memegenerator (wip)

This commit is contained in:
Flummi 2017-11-22 13:43:00 +01:00
parent 0b77b61746
commit e2bb64aa2c

View File

@ -200,4 +200,17 @@ module.exports = bot => {
e.reply("R".padEnd(~~(Math.random() * 20 + 10), "E"));
}
});
bot._trigger.set("meme", {
call: /^(.|\/)meme .*/i,
level: 0,
active: false,
clients: ["irc", "tg"],
f: e => {
const args = e.message.trim().substring(6).split("/");
//if(args.length < 3)
return e.reply("[WIP] too few arguments: .meme [meme] / [line 1] / [line 2]");
}
});
};