前提・実現したいこと
Discord.py で特定のボイスチャンネルに接続している人数を取得したいです。
VCのIDは分かっています
発生している問題・エラーメッセージ
Ignoring exception in on_message Traceback (most recent call last): File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/client.py", line 343, in _run_event await coro(*args, **kwargs) File "main.py", line 17, in on_message member = await channel.Voicechannel.members AttributeError: 'VoiceChannel' object has no attribute 'Voicechannel'
該当のソースコード
python
1 if message.content == "=me": 2 channel = client.get_channel(VCのID) 3 member = await channel.Voicechannel.members 4 if member == 1: 5 await message.channel.send("aaaaa") 6 else: 7 await message.channel.send(member)
補足情報(FW/ツールのバージョンなど)
python3.8.2
replitというサイトを使っています。
main.pyという名前
import discord
client = discord.client()
client.run(ID)などのプログラムは入れてます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。