第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

一個(gè)說用戶輸入的機(jī)器人

一個(gè)說用戶輸入的機(jī)器人

FFIVE 2023-04-20 16:29:54
所以基本上,我試圖讓我的代碼讓我的機(jī)器人看到當(dāng)用戶在任何文本頻道中鍵入“t!say #channel“消息””時(shí),機(jī)器人將轉(zhuǎn)到指定的頻道并說“消息”const { MessageEmbed } = require('discord.js');module.exports = { name: 'say', aliases: ['bc', 'broadcast'], description: 'Says your input via the bot', usage: '<input>', run: async (bot, message, args) => {  if (!message.member.hasPermission(['MANAGE_MESSAGES'])) {   if (message.mentions.channels.size == 0) {    message.reply('please mention a channel first.');   } else if (!message.member.hasPermission(['MANAGE_MESSAGES'])) {    let targetChannel = message.mentions.channels.first();    // Get the message to print    const args = message.content.split(' ').slice(2);    let saytext = args.join(' ');    targetChannel.send(saytext);    message.delete();   }  } },};當(dāng)我嘗試使用該命令時(shí),我在控制臺(tái)中收到一條錯(cuò)誤消息,提示“TypeError: client.commands.get(...).execute is not a function”這是我的 index.js 文件中的代碼片段,命令提示符顯示它位于client.on('message', (message) => { if (!message.content.startsWith(prefix) || message.author.bot) return; const args = message.content  .slice(prefix.length)  .trim()  .split(/ +/); const command = args.shift().toLowerCase(); if (!client.commands.has(command)) return; try {  client.commands.get(command).execute(message, args); } catch (error) {  console.error(error);  message.reply('there was an error trying to execute that command!'); }});有人知道我做錯(cuò)了什么嗎?
查看完整描述

1 回答

?
阿晨1998

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個(gè)贊

根據(jù)您更新的問題,我的猜測(cè)是該錯(cuò)誤是由于您調(diào)用.execute()命令而命令沒有execute功能引起的。從您的say命令代碼來看,您的命令似乎具有.run功能。


所以嘗試改變


client.commands.get(command).execute(message, args);


// I've added the `client` property because your run command takes three arguments, not two.

client.commands.get(command).run(client, message, args);


查看完整回答
反對(duì) 回復(fù) 2023-04-20
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)