serverDeafen discordbot |不和谐/ js
Posted
技术标签:
【中文标题】serverDeafen discordbot |不和谐/ js【英文标题】:serverDeafen discordbot | discord/js 【发布时间】:2020-11-24 23:49:01 【问题描述】:好的。我有一个不和谐的音乐机器人,我想在机器人加入频道时Server Deafen,我已经做了.setSelfDeaf(true)
,但找不到serverDeafen
的任何东西
这是我用作 .setSelfDeaf(true)
的代码:
await queueConstruct.connection.voice.setSelfDeaf(true);
在那之后我也为 serverDeafen 试过这个:await queueConstruct.connection.voice.serverDeaf;
但它没有用!
【问题讨论】:
您所说的服务器使机器人聋到底是什么意思?另外,您使用的是什么版本的 Discord.js? 可能重复:How would I make a bot self deafen itself? 我使用 discord.js v12.2.0,我的意思是 serverDeafning,你发送的链接。是为了让机器人自己耳聋!,您可以为机器人甚至不和谐的用户提供耳聋服务,而我正在谈论那个耳聋! 所以你想把所有人都震聋? 不,只有机器人(客户端本身) 【参考方案1】:您在寻找.setDeaf()
方法吗?
VoiceChannel.join()
.then(connection =>
connection.voice.setDeaf(true)
.catch(err => console.error(err));
)
.catch(err => console.error(err));
【讨论】:
以上是关于serverDeafen discordbot |不和谐/ js的主要内容,如果未能解决你的问题,请参考以下文章
从 DiscordBot CommandService 中删除命令
带有 discord.py 的 Discordbot 不会使用命令 ctx.channel.purge(*amount*) 删除消息
从 PokeAPI for DiscordBot 以 JSON 格式显示 JS 对象
Discordbot 使用线程引发“RuntimeError:set_wakeup_fd 仅适用于主线程”仅在 linux 上