我为我的音乐机器人做了这段代码,但当机器人不在语音通道时,机器人如何检查,机器人会自动连接回特定的通道,如id。但是,当机器人在另一个语音通道中使用时,机器人不会返回到我制作的特定语音通道。idk如何编码间隔,循环,或检查机器人是否在语音中。 client.on("ready", () => {
console.log(`Hello ${client.user.username} is now online!`);
let channel = client.channels.cache.get("720137811587629119");
尝试让我的discord机器人将用户移动到消息作者所在的语音通道。例如,我写了!move @john,然后机器人就会把"john“移到我的语音频道。 # command to move a user to current channel
@bot.command()
async def move(ctx,member:discord.Member=None):
channel= discord.utils.get(ctx.guild.voice_channels)
if not member:
await ctx.send("Who am I
标题说得很清楚,我该如何将消息作者拖到机器人目前所在的语音通道中?
说我的机器人一个人在一个语音频道。调用命令只对作者播放声音。
但是作者不在语音通道中,所以我不能使用move_to(*)方法,因此单词拖放。
我在API引用中寻找连接,但似乎找不到任何连接。
Is it even possible to drag users into a voice channel?
我使用C#和Bot Builder SDK 3.15.3开发了一个常见问题机器人。我们有一大组问题/答案对上传到QNA Maker服务。我已经启用了Direct Line Channel,机器人显示在网页上。我使用了Microsoft提供的Web聊天控件,并进行了一些自定义和皮肤设置。
现在我想启用与机器人的语音交互,为此我决定使用Microsoft Speech to Text Cognitive Service。
我想要做的是,当每个用户说出一些话语时,我希望将话语发送到我的机器人服务,类似于发送like文本。然后在C#代码中,我想要将语音转换为文本,并进一步对检索到的文本进行拼写检查,最
@client.event
async def on_voice_state_update(member, before, after):
# This function is called when not only member join to the voice channel,
# but also member changed their status to mute.
# So, it is necessary to catch only events that joining channel.
if before.channel != after.