mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
74 lines
No EOL
1.8 KiB
JavaScript
74 lines
No EOL
1.8 KiB
JavaScript
const Command = require("../../base/Command.js");
|
|
|
|
class Say extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: "say",
|
|
dirname: __dirname,
|
|
enabled: true,
|
|
guildOnly: false,
|
|
aliases: [],
|
|
memberPermissions: [],
|
|
botPermissions: ["SEND_MESSAGES"],
|
|
nsfw: false,
|
|
ownerOnly: true,
|
|
cooldown: 2000
|
|
});
|
|
}
|
|
|
|
async run(message, args, data) {
|
|
if (!args[0]) return message.delete();
|
|
|
|
// Arguments split
|
|
let split = "++";
|
|
args = args.join(" ").split(split);
|
|
for (var i = 0; i < args.length; i++) args[i] = args[i].trim();
|
|
|
|
if (message.attachments.size > 0) var attachment = message.attachments.first().url;
|
|
|
|
if (args[1] && !args[2]) {
|
|
message.delete();
|
|
const saychannel = message.guild.channels.cache.find(channel => channel.name == args[1] || channel.id == args[1]);
|
|
saychannel.sendTyping();
|
|
|
|
setTimeout(function () {
|
|
if (attachment) saychannel.send({
|
|
content: args[0],
|
|
files: [attachment]
|
|
});
|
|
else saychannel.send({
|
|
content: args[0]
|
|
});
|
|
}, 2000);
|
|
} else if (args[2]) {
|
|
const saychannel = this.client.guilds.cache.find(guild => guild.name == args[2] || guild.id == args[2]).channels.cache.find(channel => channel.name == args[1] || channel.id == args[1]);
|
|
saychannel.sendTyping();
|
|
|
|
setTimeout(function () {
|
|
if (attachment) saychannel.send({
|
|
content: args[0],
|
|
files: [attachment]
|
|
});
|
|
else saychannel.send({
|
|
content: args[0]
|
|
});
|
|
}, 2000);
|
|
} else {
|
|
message.delete();
|
|
const saychannel = message.channel;
|
|
saychannel.sendTyping();
|
|
|
|
setTimeout(function () {
|
|
if (attachment) saychannel.send({
|
|
content: args[0],
|
|
files: [attachment]
|
|
});
|
|
else saychannel.send({
|
|
content: args[0]
|
|
});
|
|
}, 2000);
|
|
};
|
|
}
|
|
};
|
|
|
|
module.exports = Say; |