如何基于webhooks和角色在JS中修复复杂的Discord命令

问题描述 投票:0回答:1

我正在编写一个命令,当你执行命令时,d!woa会发生以下情况

使用特定名称创建webhook,然后使用通道名称创建角色,之后机器人会监视是否存在具有该通道的特定名称的webhook,并且只看到是否有人在该通道中发送消息。如果是,那么机器人将使用特定名称添加该角色。问题是存在这样的错误:TypeError: Cannot read property 'guild' of undefined错误最有可能出现在提供的代码的末尾。

我已经尝试重新安排代码,定义公会和定义消息。即使在尝试了所有这些之后它似乎也不起作用。我只希望它依赖于ID而不是Name来准确这个命令。

const Discord = require('discord.js');
const commando = require('discord.js-commando');

class woa extends commando.Command 
{
    constructor(client) {
        super(client, {
            name: 'watchoveradd',
            group: 'help',
            memberName: 'watchoveradd',
            description: 'placeholder',
            aliases: ['woa'],
        })
    }
async run(message, args){

if (message.channel instanceof Discord.DMChannel) return message.channel.send('This command cannot be executed here.')
else

if(!message.member.guild.me.hasPermission(['MANAGE_WEBHOOKS'])) return message.channel.send('I don\'t have the permissions to make webhooks, please contact an admin or change my permissions!')
if(!message.member.guild.me.hasPermission(['MANAGE_ROLES'])) return message.channel.send('I don\'t have the permissions to make roles, please contact an admin or change my permissions!')
if (!message.member.hasPermission(['MANAGE_WEBHOOKS'])) return message.channel.send('You need to be an admin or webhook manager to use this command.')
if (!message.member.hasPermission(['MANAGE_ROLES'])) return message.channel.send('You need to be an admin or role manager to use this command.')

const avatar = `https://cdn.discordapp.com/attachments/515307677656678420/557050444954992673/Generic5.png`;
const name2 = "SYNTHIBUTWORSE-1.0WOCMD";

let woaID = message.mentions.channels.first(); 
if(!woaID) return message.channel.send("Channel is nonexistant or command was not formatted properly. Please do s!woa #(channelname)"); 
let specifiedchannel = message.guild.channels.find(t => t.id == woaID.id);; 
specifiedchannel.send('test');

const hook = await woaID.createWebhook(name2, avatar).catch(error => console.log(error))
await hook.edit(name2, avatar).catch(error => console.log(error))
message.channel.send("Please do not tamper with the webhook or else the command implied before will no longer function with this channel.")

setTimeout(function(){
    message.channel.send('Please wait...');
  }, 10);
setTimeout(function(){
var role = message.guild.createRole({
    name: `Synthibutworse marker ${woaID.name} v1.0`,
    color: 0xcc3b3b,}).catch(console.error);

if(role.name == "Synthibutworse marker") {
  role.setMentionable(false, 'SBW Ping Set.')
  role.setPosition(10)
  role.setPermissions(['CREATE_INSTANT_INVITE', 'SEND_MESSAGES'])
    .then(role => console.log(`Edited role`))
    .catch(console.error)};
}, 20);

var sbwrID = member.guild.roles.find(`Synthibutworse marker ${woaID} v1.0`);
let specifiedrole = message.guild.roles.find(r => r.id == sbwrID.id)

setTimeout(function(){
      message.channel.send('Created Role... Please wait.');
}, 100);

message.guild.specifiedchannel.replacePermissionOverwrites({
  overwrites: [
    {
       id: specifiedrole,
       denied: ['SEND_MESSAGES'],
       allowed: ['VIEW_CHANNEL'],
    },
  ],
    reason: 'Needed to change permissions'
  });

var member = client.user

var bot = message.client
bot.on('message', function(message) { {
    if(message.channel.id == sbwrID.id) {
let bannedRole = message.guild.roles.find(role => role.id === specifiedrole);
message.member.addRole(bannedRole);
  }
}})

}};
module.exports = woa;

我希望没有TypeError的命令,以及能够创建角色和webhook(用于标记)的命令,并且角色会自动设置,以便具有该角色的用户将无法在频道中发言,任何在频道讲话的人都会得到这个角色。实际输出是TypeError: Cannot read property 'guild' of undefined,但创建了角色和webhook。

javascript visual-studio-code discord.js
1个回答
0
投票

你有var sbwrID = member.guild...你没有定义成员。使用message.member.guild...

您可以设置linter(https://discordjs.guide/preparations/setting-up-a-linter.html)自动查找这些问题。

© www.soinside.com 2019 - 2024. All rights reserved.