meilleur slash args
This commit is contained in:
parent
e9fed9ac5c
commit
d8b2c003cc
1 changed files with 27 additions and 17 deletions
|
@ -2,7 +2,6 @@ import discord
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import shlex
|
|
||||||
from discord.ext import commands, tasks
|
from discord.ext import commands, tasks
|
||||||
from random import randint, shuffle
|
from random import randint, shuffle
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
@ -50,7 +49,7 @@ class Utils(commands.Cog):
|
||||||
await message.edit(embed = discord.Embed(color = discord.Colour.random(), description = f':hourglass: {round(self.client.latency * 1000)} ms\n\n:stopwatch: {ping2} ms\n\n:heartbeat: {ping} ms'))
|
await message.edit(embed = discord.Embed(color = discord.Colour.random(), description = f':hourglass: {round(self.client.latency * 1000)} ms\n\n:stopwatch: {ping2} ms\n\n:heartbeat: {ping} ms'))
|
||||||
if fromSlash != True:
|
if fromSlash != True:
|
||||||
await ctx.message.add_reaction(emoji = '✅')
|
await ctx.message.add_reaction(emoji = '✅')
|
||||||
@cog_ext.cog_slash(name="ping", description = "Affiche mon ping.")
|
@cog_ext.cog_slash(name="ping", description = "Affiche mon ping, mettre 'help' en argument pour connaître à quoi correspond les données.")
|
||||||
async def __ping(self, ctx, arg = None):
|
async def __ping(self, ctx, arg = None):
|
||||||
ctx.slash_created_at = int(datetime.now(timezone(self.customTimezone)).timestamp())
|
ctx.slash_created_at = int(datetime.now(timezone(self.customTimezone)).timestamp())
|
||||||
if arg == None:
|
if arg == None:
|
||||||
|
@ -289,7 +288,7 @@ class Utils(commands.Cog):
|
||||||
|
|
||||||
@commands.command(name='amongus')
|
@commands.command(name='amongus')
|
||||||
async def _amongus(self, ctx, *map):
|
async def _amongus(self, ctx, *map):
|
||||||
"""Affiche la carte voulue d'Among Us.\n ➡ Syntaxe: {PREFIX}amongus <carte>"""
|
"""Affiche la carte voulue d'Among Us.\n ➡ Syntaxe: {PREFIX}amongus <mira/polus/skeld/airship>"""
|
||||||
fromSlash = False
|
fromSlash = False
|
||||||
if len(map) > 0:
|
if len(map) > 0:
|
||||||
if map[-1] == True:
|
if map[-1] == True:
|
||||||
|
@ -343,7 +342,7 @@ class Utils(commands.Cog):
|
||||||
await ctx.invoke(self.client.get_command("amongus"))
|
await ctx.invoke(self.client.get_command("amongus"))
|
||||||
else:
|
else:
|
||||||
await ctx.message.add_reaction(emoji = '❓')
|
await ctx.message.add_reaction(emoji = '❓')
|
||||||
@cog_ext.cog_slash(name="amongus", description = "Affiche la carte voulue d'Among Us.")
|
@cog_ext.cog_slash(name="amongus", description = "Affiche la carte voulue d'Among Us. Carte dispo : <mira/polus/skeld/airship>")
|
||||||
async def __amongus(self, ctx, map):
|
async def __amongus(self, ctx, map):
|
||||||
return await self._amongus(ctx, map, True)
|
return await self._amongus(ctx, map, True)
|
||||||
|
|
||||||
|
@ -396,7 +395,7 @@ class Utils(commands.Cog):
|
||||||
if len(args) > 0:
|
if len(args) > 0:
|
||||||
if args[-1] == True:
|
if args[-1] == True:
|
||||||
fromSlash = args[-1]
|
fromSlash = args[-1]
|
||||||
args = args[:-1]
|
args = args[0]
|
||||||
|
|
||||||
args = list(args)
|
args = list(args)
|
||||||
if len(args) > 2:
|
if len(args) > 2:
|
||||||
|
@ -437,10 +436,19 @@ class Utils(commands.Cog):
|
||||||
else:
|
else:
|
||||||
return await ctx.send(f'Désolé, mais il manque des arguments : `{ctx.prefix}sondage "<Question>" "<Proposition1>" "<Proposition...>" "<Proposition20>"`')
|
return await ctx.send(f'Désolé, mais il manque des arguments : `{ctx.prefix}sondage "<Question>" "<Proposition1>" "<Proposition...>" "<Proposition20>"`')
|
||||||
@cog_ext.cog_slash(name="sondage", description = "Fais un sondage.")
|
@cog_ext.cog_slash(name="sondage", description = "Fais un sondage.")
|
||||||
async def __sondage(self, ctx, args):
|
async def __sondage(self, ctx, question, prop1, prop2, prop3 = None, prop4 = None,
|
||||||
|
prop5 = None, prop6 = None, prop7 = None, prop8 = None, prop9 = None, prop10 = None,
|
||||||
|
prop11 = None, prop12 = None, prop13 = None, prop14 = None, prop15 = None, prop16 = None,
|
||||||
|
prop17 = None, prop18 = None, prop19 = None, prop20 = None):
|
||||||
ctx.prefix = "/"
|
ctx.prefix = "/"
|
||||||
args = shlex.split(args)
|
args = [question, prop1, prop2, prop3, prop4, prop5, prop6, prop7, prop8,
|
||||||
return await self._sondage(ctx, *args, True)
|
prop9, prop10, prop11, prop12, prop13, prop14, prop15, prop16,
|
||||||
|
prop17, prop18, prop19, prop20]
|
||||||
|
for i in range(3, 20): # suppression des None
|
||||||
|
if args[i] == None:
|
||||||
|
args = args[:i]
|
||||||
|
break
|
||||||
|
return await self._sondage(ctx, args, True)
|
||||||
|
|
||||||
@commands.command(name='avis', aliases=['vote'])
|
@commands.command(name='avis', aliases=['vote'])
|
||||||
async def _avis(self, ctx, *args):
|
async def _avis(self, ctx, *args):
|
||||||
|
@ -449,7 +457,7 @@ class Utils(commands.Cog):
|
||||||
if len(args) > 0:
|
if len(args) > 0:
|
||||||
if args[-1] == True:
|
if args[-1] == True:
|
||||||
fromSlash = args[-1]
|
fromSlash = args[-1]
|
||||||
args = args[:-1]
|
args = args[0]
|
||||||
|
|
||||||
args = list(args)
|
args = list(args)
|
||||||
if len(args) > 2 or len(args) == 0:
|
if len(args) > 2 or len(args) == 0:
|
||||||
|
@ -469,10 +477,12 @@ class Utils(commands.Cog):
|
||||||
await message.add_reaction(emoji = i)
|
await message.add_reaction(emoji = i)
|
||||||
if fromSlash != True:
|
if fromSlash != True:
|
||||||
return await ctx.message.delete()
|
return await ctx.message.delete()
|
||||||
@cog_ext.cog_slash(name="avis", description = "Demande un avis.")
|
@cog_ext.cog_slash(name="avis", description = "Demande un avis, si 2 arguments, alors l'argument 1 est le titre, sinon c'est la demande.")
|
||||||
async def __avis(self, ctx, args):
|
async def __avis(self, ctx, titreoudemande, demande = None):
|
||||||
args = shlex.split(args)
|
args = [titreoudemande, demande]
|
||||||
return await self._avis(ctx, *args, True)
|
if args[1] == None:
|
||||||
|
args = args[:1]
|
||||||
|
return await self._avis(ctx, args, True)
|
||||||
|
|
||||||
@commands.command(name='reminder', aliases=["remind", "remindme", "rappel"])
|
@commands.command(name='reminder', aliases=["remind", "remindme", "rappel"])
|
||||||
async def _reminder(self, ctx, time, *reminder):
|
async def _reminder(self, ctx, time, *reminder):
|
||||||
|
@ -578,8 +588,8 @@ class Utils(commands.Cog):
|
||||||
embed.add_field(name = "\u200b", value = "Vous n'avez aucun rappels en attente !")
|
embed.add_field(name = "\u200b", value = "Vous n'avez aucun rappels en attente !")
|
||||||
await ctx.send(embed = embed)
|
await ctx.send(embed = embed)
|
||||||
@cog_ext.cog_slash(name="reminderlist", description = "Affiche la liste des rappels d'un utilisateur.")
|
@cog_ext.cog_slash(name="reminderlist", description = "Affiche la liste des rappels d'un utilisateur.")
|
||||||
async def __reminderlist(self, ctx, utilisateur = None):
|
async def __reminderlist(self, ctx, user = None):
|
||||||
if utilisateur == None:
|
if user == None:
|
||||||
return await self._reminderlist(ctx, True)
|
return await self._reminderlist(ctx, True)
|
||||||
else:
|
else:
|
||||||
return await self._reminderlist(ctx, utilisateur, True)
|
return await self._reminderlist(ctx, user, True)
|
||||||
|
|
Reference in a new issue