Disocrdのbotを動かしたい
発生している問題・エラーメッセージ
!playとチャットに打ったらBotがボイスチャットに入るようにしたいのですが、Discord.pyがv1.0への移行をしたため使えなくなってしまいました。
Discord.py https://discordpy.readthedocs.io/ja/latest/migrating.html
ソースのサイト https://note.com/akaness_note/n/nc466d2a00ead
どこをどのように変更したら動きますか?
プログラミング初心者なのでなにもわかりません。
無知で申し訳ございません。
該当のソースコード
import discord
discord_token = '***' # Discordbotのアクセストークンを入力
discord_voice_channel_id = '' # 特定のボイスチャンネルを指定
youtube_url = 'https://www.youtube.com/watch?v=FIw-HUP7XK0' # youtubeのURLを指定
voice = None
player = None
client = discord.Client()
@client.event
async def on_ready():
print('Botを起動しました。')
@client.event
async def on_message(message):
global voice, player
msg = message.content
if message.author.bot:
return
if msg == '!play': if message.author.voice_channel is None: await client.send_message(message.channel ,'ボイスチャンネルに参加してからコマンドを打ってください。') return if voice == None: # ボイスチャンネルIDが未指定なら if discord_voice_channel_id == '': voice = await client.join_voice_channel(message.author.voice_channel) # ボイスチャンネルIDが指定されていたら else: voice = await client.join_voice_channel(client.get_channel(discord_voice_channel_id)) # 接続済みか確認 elif(voice.is_connected() == True): # 再生中の場合は一度停止 if(player.is_playing()): player.stop() # ボイスチャンネルIDが未指定なら if discord_voice_channel_id == '': await voice.move_to(message.author.voice_channel) # ボイスチャンネルIDが指定されていたら else: await voice.move_to(client.get_channel(discord_voice_channel_id)) # youtubeからダウンロードし、再生 player = await voice.create_ytdl_player(youtube_url) player.start() return # 再生中の音楽を停止させる if msg == '!stop': if(player.is_playing()): player.stop() return # botをボイスチャットから切断させる if msg == '!disconnect': if voice is not None: await voice.disconnect() voice = None return
client.run(discord_token)
python,discord.py
試したこと
原因なども調べましたが、全然わかりませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー