本文介绍了我将如何使机器人自我防御?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在尝试使机器人在进入语音通道后就自动防御。
我尝试过
I am currently trying to make the bot deafen itself as soon as it joins into a voice channel.I've tried
client.ws.voice.setSelfDeaf(true)
我也被告知要使用
client.ws.send()
但我不知道如何使用它。
我有什么办法吗?
but I have no idea how to use it.Is there any way I could do it?
推荐答案
client.ws.voice
和 client.ws.send()
都不是问题。
您需要的要做的是使用当漫游器加入语音通道时。
What you need to do is to use voice.setSelfDeaf(true)
when the bot joins a voice channel.
voiceChannel.join()
.then(connection => {
connection.voice.setSelfDeaf(true);
});
这篇关于我将如何使机器人自我防御?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!