Added invite URL generation on startup with simple permissions
This commit is contained in:
parent
8571d7abc9
commit
1f461af68f
2 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
# - bottoken
|
||||
# This is the bottoken of your discord bot.
|
||||
# If you need help on how to set up a Discord app with bot token,
|
||||
# try searching the internet for "How to create a Discord bot token".
|
||||
# try searching the internet for "How to create a Discord bot token" or
|
||||
# visit: https://discordpy.readthedocs.io/en/latest/discord.html
|
||||
# Also don't forget to invite the bot onto your server(s).
|
||||
|
||||
[General]
|
||||
|
|
|
@ -36,6 +36,8 @@ bot = commands.Bot(command_prefix='.', description=description, intents=intents)
|
|||
@bot.event
|
||||
async def on_ready():
|
||||
print(f'pybot-f logged in as {bot.user} (ID: {bot.user.id})')
|
||||
iurl = discord.utils.oauth_url(bot.user.id)
|
||||
print(f'Bot invite URL: {iurl}')
|
||||
print('------')
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue