2019-09-13 20:02:41 +00:00
|
|
|
exports.run = async (message, args) => {
|
|
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide what you want to spam!`;
|
2019-11-23 23:23:28 +00:00
|
|
|
if (message.content.includes("@everyone") || message.content.includes("@here")) return "I don't know about you, but that seems like a bad idea.";
|
2019-09-13 20:02:41 +00:00
|
|
|
return args.join(" ").repeat(500).substring(0, 500);
|
2019-12-02 20:47:22 +00:00
|
|
|
};
|
|
|
|
|
2020-07-06 20:19:30 +00:00
|
|
|
exports.category = 9;
|
2019-12-05 16:58:46 +00:00
|
|
|
exports.help = "placeholder";
|
|
|
|
exports.params = "[text]";
|