前提・実現したいこと
discordのBOTを部屋から退出させるコマンドを実装したいです。
discordのBOTの退出でつまづきました。
ここに質問の内容を詳しく書いてください。
discordのBOTを作成しておりますが、いろいろ試してもうまくいかないため質問させていただきます。
発生している問題・エラーメッセージ
BOTは退出コマンドを打っても退室せずに部屋にいるままです。
以下ターミナルのエラーです。
Traceback (most recent call last): File "C:\Users\####\anaconda3\lib\site-packages\discord\ext\commands\bot.py", line 994, in invoke await ctx.command.invoke(ctx) File "C:\Users\####\anaconda3\lib\site-packages\discord\ext\commands\core.py", line 894, in invoke await injected(*ctx.args, **ctx.kwargs) File "C:\Users\####\anaconda3\lib\site-packages\discord\ext\commands\core.py", line 176, in wrapped raise CommandInvokeError(exc) from exc discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'VoiceChannel' object has no attribute 'disconnect'
該当のソースコード
from ui import SelectTextChannel, SelectVoiceChannel
import discord
import asyncio
from discord.ext import commands
from text2wav import text2wav
from Item import Item
import pyvcroid2
class VoiceroidTTSBot(commands.Cog):
def init(self, bot, vc):
self.bot: commands.Bot = bot
self.vcroid: pyvcroid2.VcRoid2 = vc
self.voice_channel: discord.VoiceChannel = None
self.voice_client: discord.VoiceClient = None
//ここから退出コマンド
@bot.command(name = "bey",)
print('成功')
async def bey(self, ctx):
await Item.voice_channel.disconnect()
//ここまで
@commands.command()
async def d(self, ctx: commands.Context):
print(f"debug: {Item.text_channel, Item.voice_channel}")
試したこと
いろいろなサイトの退出コマンドを試しましたがうまくいきませんでした。
Item.voice_channelにはボイスチャンネルの名前は入っていましたが、部屋IDではありませんでした。
voice_channelsは各ボイスチャンネルの部屋名の配列でした。
退出コマンド内の「成功」も表示されません。
voicechannelが関数として正しくないのは想像つくのですが、じゃあ何が正しいのかもわかりません。
以下失敗したコマンド--------
@bot.command(pass_context = True)
async def leavevoice(ctx):
for x in client.voice_clients:
if(x.server == ctx.message.server):
return await x.disconnect()
コマンド--------
エラーの対策で利用させていただいたサイト
https://github.com/Rapptz/discord.py/issues/2611
https://teratail.com/questions/200742
https://www.codegrepper.com/code-examples/python/discord.py+join+and+leave+voice+channel
https://teratail.com/questions/45220
http://www.tensorflowz.com/faq/html/Tensorflow_return-outside-function-D4.html
https://github.com/Just-Some-Bots/MusicBot/blob/master/musicbot/bot.py
https://stackoverflow.com/questions/64403332/discord-py-1-5-0-nameerror-name-client-is-not-defined
https://stackoverflow.com/questions/67906874/discord-py-disconnect-from-voice-channel
補足情報(FW/ツールのバージョンなど)
python3はanaconda3で運用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。