ajout commentaires
This commit is contained in:
parent
8c88ba9efb
commit
5ddef1976a
1 changed files with 3 additions and 1 deletions
|
@ -5,9 +5,9 @@ import re
|
||||||
import os
|
import os
|
||||||
from discord_slash import SlashCommand
|
from discord_slash import SlashCommand
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
|
from utils.core import userOrNick, goodTimezone
|
||||||
customPrefix = os.environ['PREFIX']
|
customPrefix = os.environ['PREFIX']
|
||||||
customTimezone = os.environ['TIMEZONE']
|
customTimezone = os.environ['TIMEZONE']
|
||||||
from utils.core import userOrNick, goodTimezone
|
|
||||||
|
|
||||||
client = commands.Bot(command_prefix = customPrefix, case_insensitive = True, intents = discord.Intents.all())
|
client = commands.Bot(command_prefix = customPrefix, case_insensitive = True, intents = discord.Intents.all())
|
||||||
slash = SlashCommand(client, sync_commands = True)
|
slash = SlashCommand(client, sync_commands = True)
|
||||||
|
@ -45,11 +45,13 @@ async def on_message(message):
|
||||||
if message.author == client.user:
|
if message.author == client.user:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
"""informations concernant le bot lorsqu'il est mentionner"""
|
||||||
if client.user.mention == message.content.replace("!",""):
|
if client.user.mention == message.content.replace("!",""):
|
||||||
ctx = await client.get_context(message)
|
ctx = await client.get_context(message)
|
||||||
prefix = await client.get_prefix(message)
|
prefix = await client.get_prefix(message)
|
||||||
await ctx.send(f">>> Coucou !\nMon préfix est `{prefix}` et ma commande d'aide est `{prefix}help`")
|
await ctx.send(f">>> Coucou !\nMon préfix est `{prefix}` et ma commande d'aide est `{prefix}help`")
|
||||||
|
|
||||||
|
"""citation"""
|
||||||
urls = re.findall(r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+', message.content)
|
urls = re.findall(r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+', message.content)
|
||||||
httpsString = "https://"
|
httpsString = "https://"
|
||||||
channelsString = "discord.com/channels/"
|
channelsString = "discord.com/channels/"
|
||||||
|
|
Reference in a new issue