Discord.js - 允许在特定频道中执行命令
Discord.js - Allow command in specific channel
我有一个 Discord.js 机器人,但我不知道该怎么做 :/
我希望用户仅在#commands 频道中键入命令!help。
P.S。我知道如何获取频道 ID,我有。
那么我应该在命令事件中做什么才能做到这一点?
谢谢!
使用Message.channel.id
属性。
参考discord.js documentation了解更多
client.on('message', msg => {
if (msg.channel.id === 'ChannelID') {
// Deal with command
}
});
我有一个 Discord.js 机器人,但我不知道该怎么做 :/
我希望用户仅在#commands 频道中键入命令!help。
P.S。我知道如何获取频道 ID,我有。
那么我应该在命令事件中做什么才能做到这一点?
谢谢!
使用Message.channel.id
属性。
参考discord.js documentation了解更多
client.on('message', msg => {
if (msg.channel.id === 'ChannelID') {
// Deal with command
}
});