我想更改mercyxrd.js配置文件中conf.perms.commands的值,如下面的命令所示,请帮助我执行此操作(:
const conf = require("../../mercyxrd.js")
const Discord = require('discord.js')
const fs = require('fs');
class roller extends Command {
constructor(client) {
super(client, {
name: "roles",
aliases: ["roles"],
usage: "roles",
description: "bu komut hakkında bilgi bulunmuyor."
});
}
async run(message, args, perm) {
if(message.author.id !== "411621794131476480") return
let embed = new Discord.MessageEmbed()
if(!args[0]) return message.channel.send(embed.setDescription(`specify an argument`))
if(args[0] == "register-auth") {
let rol = message.mentions.roles.first() || message.guild.roles.cache.get(args.splice(1)[0]) || message.guild.roles.cache.find(r=>r.name===args.splice(1).join(''));
if(!rol) return message.channel.send(embed.setDescription(`please specify a role`)).then(x=>x.delete({timeout: 9000}))
//In this part, I want to change the value in my config file. conf.perms.commands
message.channel.send(`${rol} designated as the registration role.`)
}
}};
module.exports = roller;
暂无答案!
目前还没有任何答案,快来回答吧!