mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
|
const Command = require("../../base/Command.js"),
|
||
|
Resolvers = require("../../helpers/resolvers");
|
||
|
|
||
|
class Autorole extends Command {
|
||
|
constructor (client) {
|
||
|
super(client, {
|
||
|
name: "autorole",
|
||
|
dirname: __dirname,
|
||
|
enabled: true,
|
||
|
guildOnly: true,
|
||
|
aliases: [ "ar" ],
|
||
|
memberPermissions: [ "MANAGE_GUILD" ],
|
||
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
|
||
|
nsfw: false,
|
||
|
ownerOnly: false,
|
||
|
cooldown: 5000
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async run (message, args, data) {
|
||
|
const status = args[0];
|
||
|
if (status !== "on" && status !== "off") return message.error("administration/autorole:MISSING_STATUS");
|
||
|
|
||
|
if (status === "on") {
|
||
|
const role = await Resolvers.resolveRole({
|
||
|
message,
|
||
|
search: args.slice(1).join(" ")
|
||
|
});
|
||
|
if (!role) return message.error("administration/autorole:MISSING_ROLE");
|
||
|
|
||
|
data.guild.plugins.autorole = {
|
||
|
enabled: true,
|
||
|
role: role.id
|
||
|
};
|
||
|
data.guild.markModified("plugins.autorole");
|
||
|
await data.guild.save();
|
||
|
|
||
|
message.success("administration/autorole:SUCCESS_ENABLED", {
|
||
|
roleName: role.name
|
||
|
});
|
||
|
} else if (status === "off") {
|
||
|
if (!data.guild.plugins.autorole.enabled) return message.success("administration/autorole:ALREADY_DISABLED", { prefix: data.guild.prefix });
|
||
|
|
||
|
data.guild.plugins.autorole = {
|
||
|
enabled: false,
|
||
|
role: null
|
||
|
};
|
||
|
data.guild.markModified("plugins.autorole");
|
||
|
await data.guild.save();
|
||
|
|
||
|
message.success("administration/autorole:SUCCESS_DISABLED", { prefix: data.guild.prefix });
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = Autorole;
|