Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 646 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 646 Bytes

discordbotgui

Show the channels and messages that the bot can see in the gui. このコードを利用してBotが見れるチャンネルやメッセージを表示します このコードを使用する際は別ファイルでdiscord botのclientを起動して viewbotgui.start_up()関数をon_ready内で実行してください。 プロセスを分けないとBotが反応しなくなります

使い方の例:

import viewbotgui

intent=discord.Intents.all()
discord.member=True
client = commands.Bot(command_prefix='!',intents=intent)
@client.event
async def on_ready():
   viewbotgui.start_up(client)
client.run("Your Token")