Discord.js 正在向另一个频道发送消息
Discord.js Sending a message to another channel
我目前有一个工作脚本,可以根据发帖人输入的参数分配角色。
我想要做的是让机器人向本地频道发送一条消息,以便发布者知道它有效,然后向另一个频道发送另一条消息,欢迎获得服务器角色的用户。这是我的:
const { client } = require('../main.js');
module.exports = {
name: 'roles',
description: "This is the command to give new recruits their role!",
args: true,
usage: '<department> <@user>',
execute(message, args){
//variables are defined here
const channel = client.channels.cache.get('the channel id');
message.delete(); //This deletes the posters command message
if (!message.mentions.users.size){
return message.channel.send('Please make sure to tag someone!');
else if(args[0] === 'bcso'){
user.roles.add(bcso);
user.roles.add(member);
user.roles.add(whitelist)
user.roles.remove(leoR);
message.channel.send(`${user} is now a full member of the BCSO`);
channel.send('Message goes here');
}
//rest of my code
但是我在控制台中遇到的错误是:“类型错误:无法读取未定义的 属性 'channels'”
只是为了确认我设置了一个高级代码处理程序,所以这段代码在它自己的文件中的命令文件夹中。
想法?
您导入的 client
似乎未定义。可能是因为您没有在 main.js
文件中正确导出它。
幸运的是,您可以简单地使用消息来查找频道。为此,您需要将 client.channels.cache.get('the channel id');
更改为 message.client.channels.cache.get('ID HERE');
我目前有一个工作脚本,可以根据发帖人输入的参数分配角色。 我想要做的是让机器人向本地频道发送一条消息,以便发布者知道它有效,然后向另一个频道发送另一条消息,欢迎获得服务器角色的用户。这是我的:
const { client } = require('../main.js');
module.exports = {
name: 'roles',
description: "This is the command to give new recruits their role!",
args: true,
usage: '<department> <@user>',
execute(message, args){
//variables are defined here
const channel = client.channels.cache.get('the channel id');
message.delete(); //This deletes the posters command message
if (!message.mentions.users.size){
return message.channel.send('Please make sure to tag someone!');
else if(args[0] === 'bcso'){
user.roles.add(bcso);
user.roles.add(member);
user.roles.add(whitelist)
user.roles.remove(leoR);
message.channel.send(`${user} is now a full member of the BCSO`);
channel.send('Message goes here');
}
//rest of my code
但是我在控制台中遇到的错误是:“类型错误:无法读取未定义的 属性 'channels'”
只是为了确认我设置了一个高级代码处理程序,所以这段代码在它自己的文件中的命令文件夹中。
想法?
您导入的 client
似乎未定义。可能是因为您没有在 main.js
文件中正确导出它。
幸运的是,您可以简单地使用消息来查找频道。为此,您需要将 client.channels.cache.get('the channel id');
更改为 message.client.channels.cache.get('ID HERE');