【发布时间】:2017-08-11 00:59:45
【问题描述】:
import discord
import random
client = discord.Client()
async def joinVoiceChannel():
channel = client.get_channel('Id')
voice = client.join_voice_channel(channel)
print('Bot should joined the Channel')
@client.event
async def on_ready():
#info
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('------')
await joinVoiceChannel()
client.run('token')
我不知道为什么它不起作用,请帮忙,我看过一些东西,但似乎没有任何效果。我已经搜索了一切 谢谢
【问题讨论】: