発生している問題・エラーメッセージ
該当のソースコード
python
1import discord 2from discord_slash import SlashCommand 3 4 5client = discord.Client(intents=discord.Intents.all()) 6slash = SlashCommand(client, sync_commands=True) # Declares slash commands through the client. 7 8@client.event 9async def on_ready(): 10 print("Ready!") 11 12@slash.slash(name=serverinfo", 13 description="サーバーの情報を表示します") 14async def _serverinfo(ctx): 15 guild = ctx.message.guild 16 roles =[role for role in guild.roles] 17 text_channels = [text_channels for text_channels in guild.text_channels] 18 embed = discord.Embed(title=f"ServerInfo - {guild.name}", timestamp=ctx.message.created_at, color=0xffa500, inline=False) 19 embed.set_thumbnail(url=ctx.guild.icon_url) 20 embed.add_field(name="<:ten:858562663771668501>地域", value=f"{ctx.guild.region}") 21 embed.add_field(name="<:ten:858562663771668501>テキストチャンネル数", value=f"{len(text_channels)}", inline=False) 22 embed.add_field(name="<:ten:858562663771668501>ロール数", value=f"{len(roles)}", inline=False) 23 embed.add_field(name="<:ten:858562663771668501>サーバーブースト", value=guild.premium_subscription_count, inline=False) 24 embed.add_field(name="<:ten:858562663771668501>メンバー数", value=guild.member_count, inline=False) 25 embed.add_field(name="<:ten:858562663771668501>サーバー作成日(UTC)", value=guild.created_at, inline=False) 26await message.channel.send(embed=embed) 27client.run("TOKEN")
ツールのバージョン
Discord.py 1.7.3
Python3.8.6
Visual Stadio code 1.57.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。