ajout commande invite
This commit is contained in:
parent
df2ae8f6f1
commit
b22058fc77
1 changed files with 14 additions and 1 deletions
|
@ -6,7 +6,7 @@ def setup(client):
|
||||||
client.add_cog(Help(client))
|
client.add_cog(Help(client))
|
||||||
|
|
||||||
class Help(commands.Cog):
|
class Help(commands.Cog):
|
||||||
"""Listes des commandes et/ou catégories."""
|
"""Commandes relatives à l'aide utilisateur."""
|
||||||
|
|
||||||
def __init__(self, client):
|
def __init__(self, client):
|
||||||
self.client = client
|
self.client = client
|
||||||
|
@ -76,3 +76,16 @@ class Help(commands.Cog):
|
||||||
return await self._help(ctx, True)
|
return await self._help(ctx, True)
|
||||||
else:
|
else:
|
||||||
return await self._help(ctx, cog, True)
|
return await self._help(ctx, cog, True)
|
||||||
|
|
||||||
|
@commands.command(name='invite')
|
||||||
|
async def _invite(self, ctx, fromSlash = None):
|
||||||
|
"""Invite ce bot sur ton serveur !"""
|
||||||
|
if fromSlash == None:
|
||||||
|
fromSlash = False
|
||||||
|
embed = discord.Embed(description = f"[Lien vers l'invitation Discord](https://discord.com/api/oauth2/authorize?client_id={self.client.user.id}&permissions=0&scope=bot%20applications.commands)").set_author(name="Invite moi !")
|
||||||
|
if fromSlash != True:
|
||||||
|
await ctx.message.add_reaction(emoji = '✅')
|
||||||
|
return await ctx.send(embed = embed)
|
||||||
|
@cog_ext.cog_slash(name="invite", description = "Invite ce bot sur ton serveur !")
|
||||||
|
async def __invite(self, ctx):
|
||||||
|
return await self._invite(ctx, True)
|
||||||
|
|
Reference in a new issue