Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,21 @@ async def credits(ctx: ApplicationContext):
)
await ctx.respond(embed=localembed)

@client.slash_command(
name="invite",
description="Quickly get a link to invite isobot to your own server."
)
async def invite(ctx: ApplicationContext):
"""Quickly get a link to invite isobot to your own server."""
localembed = discord.Embed(
title="Invite isobot to your server!",
description="You can invite isobot to your own server (or other servers that you manage) to get the same great experience there too!\n\nJust click [here](https://discord.com/oauth2/authorize?client_id=896437848176230411&permissions=8&redirect_uri=https%3A%2F%2Fbit.ly%2Fisobotinv&integration_type=0&scope=bot+applications.commands) to invite.",
color=color
)
localembed.add_field(name="Our Website", value="https://pybotdevs.github.io/isobot")
localembed.add_field(name="Isobot Support Server", value="https://discord.gg/NcJgwKWgvw")
await ctx.respond(embed=localembed)

# Initialization
active_cogs = (
"economy",
Expand Down