JaBa/commands/Owner/say.js

74 lines
1.7 KiB
JavaScript
Raw Normal View History

const Command = require("../../base/Command");
2022-01-04 02:18:28 +05:00
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
});
}
2022-01-13 00:26:23 +05:00
async run(message, args) {
2022-01-04 02:18:28 +05:00
if (!args[0]) return message.delete();
// Arguments split
2022-01-13 00:26:23 +05:00
const split = "++";
2022-01-04 02:18:28 +05:00
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;
2022-01-04 02:18:28 +05:00
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();
2022-01-04 02:18:28 +05:00
setTimeout(function () {
if (attachment) saychannel.send({
content: args[0],
2022-01-04 02:18:28 +05:00
files: [attachment]
});
else saychannel.send({
content: args[0]
});
2022-01-04 02:18:28 +05:00
}, 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();
2022-01-04 02:18:28 +05:00
setTimeout(function () {
if (attachment) saychannel.send({
content: args[0],
2022-01-04 02:18:28 +05:00
files: [attachment]
});
else saychannel.send({
content: args[0]
});
2022-01-04 02:18:28 +05:00
}, 2000);
} else {
message.delete();
const saychannel = message.channel;
saychannel.sendTyping();
2022-01-04 02:18:28 +05:00
setTimeout(function () {
if (attachment) saychannel.send({
content: args[0],
2022-01-04 02:18:28 +05:00
files: [attachment]
});
else saychannel.send({
content: args[0]
});
2022-01-04 02:18:28 +05:00
}, 2000);
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
}
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
module.exports = Say;