2022-01-13 00:56:24 +05:00
|
|
|
const Command = require("../../base/Command");
|
2022-01-04 02:18:28 +05:00
|
|
|
|
|
|
|
class Setprefix extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
|
|
name: "setprefix",
|
|
|
|
dirname: __dirname,
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: true,
|
|
|
|
aliases: ["setp"],
|
|
|
|
memberPermissions: ["MANAGE_GUILD"],
|
|
|
|
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
|
|
|
|
nsfw: false,
|
|
|
|
ownerOnly: false,
|
|
|
|
cooldown: 1000
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async run(message, args, data) {
|
|
|
|
const prefix = args[0];
|
|
|
|
if (!prefix) return message.error("administration/setprefix:MISSING_PREFIX");
|
|
|
|
if (prefix.length > 5) return message.error("administration/setprefix:TOO_LONG");
|
|
|
|
|
|
|
|
data.guild.prefix = prefix;
|
|
|
|
data.guild.save();
|
|
|
|
|
|
|
|
return message.success("administration/setprefix:SUCCESS", {
|
|
|
|
prefix
|
|
|
|
});
|
|
|
|
}
|
2022-01-13 00:26:23 +05:00
|
|
|
}
|
2022-01-04 02:18:28 +05:00
|
|
|
|
|
|
|
module.exports = Setprefix;
|