繁体   English   中英

discord 机器人不处理命令

[英]discord bot not processing the command

我正在向我的discord v12机器人添加一些新命令。 但它没有响应我输入的代码。 任何帮助表示赞赏。 此部分在 index.js 中

client.admins = new discord.Collection();
const admins = fs.readdirSync('./custom/admin').filter(file => file.endsWith('.js'));
for (const file of admins) {
    const admin = require(`./custom/admin/${file}`);
    client.admins.set(admin.name.toLowerCase(), admin);
};

这是处理以上几行的代码

if (message.author.bot || message.channel.type === 'dm') return;

    const prefix = client.config.discord.prefix;

    if (message.content.indexOf(prefix) !== 0) return;

    const args = message.content.slice(prefix.length).trim().split(/ +/g);
    const admin = args.shift().toLowerCase();

    const adm = client.admins.get(admin) || client.admins.find(adm => adm.aliases && adm.aliases.includes(admin));

    if (adm) adm.execute(client, message, args);

我正在尝试让机器人执行的 function 名为 delete.js

module.exports = {
    name: 'snap' ,
    aliases: [],
    category: 'admin',
    utilisation: '{prefix}snap [number]',

    execute(message, args) {
        if(isNaN(args)) return message.reply("Bruh,Specify how much message should I delete")
           if(args>99) return message.reply("You ain't making me do that much work boi")

           if (message.member.hasPermission('ADMINISTRATOR') ){

            const {MessageAttachment} = require('discord.js');
            const snaping = new MessageAttachment('./snap.gif')
            message.channel.send(snaping)
         setTimeout(snapCommand , 9000 ,args, message)  

        }
      else 
      { 
        message.channel.send("-_- you are not an admin,Then why are you trying to use admin commands");
      }
      function snapCommand(args, message){
        var del= args ;
        del = parseInt(del , 10)
       message.channel.bulkDelete(del+2);
      }
    }
    
}

当我启动机器人时,它没有显示任何错误消息,所以我认为这是一个好兆头,但是当我使用.snap 5 '.' 时这是我的前缀。 机器人什么都不做? 控制台也没有错误。 有没有人有解决这个问题的想法?

没关系,我通过将客户端添加到 delete.js 代码来修复它

execute(client, message, args) {
        if(isNaN(args)) return message.reply("Bruh,Specify how much message should I delete")
           if(args>99) return message.reply("You ain't making me do that much work boi")

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM