memegenerator (wip)
This commit is contained in:
parent
0b77b61746
commit
e2bb64aa2c
|
@ -200,4 +200,17 @@ module.exports = bot => {
|
||||||
e.reply("R".padEnd(~~(Math.random() * 20 + 10), "E"));
|
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]");
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user