前提・実現したいこと
Botが通話に参加していてかつ音楽を流していたら、「ボットが音楽を再生中です。」と送信してくれるものを実現したい。
is_connected()とis_playing()を使用するのは分かったが、どのようにすれば動くのかがよく分かっていないので、教えて欲しい。
該当のソースコード
python
1import discord 2from discord.ext import tasks, commands 3 4client = discord.Client() 5 6@client.event 7async def on_ready(): 8 print('ログインしました') 9 10@tasks.loop(seconds=4.0) 11async def loop(): 12 if(bot.is_connected() == True) 13 if(bot.is_playing()): 14 await channel.send('ボットが音楽を再生中です。') 15 16loop.start() 17client.run("自分のtoken")
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/30 14:47
2020/06/30 15:13
2020/06/30 15:24
2020/07/01 03:06
2020/07/01 09:49
2020/07/02 07:47