Da musst du im Internet vermutlich mal im internet neue Zertifikate installieren, jedoch musst du es nicht da eventuell (mein Freund) Viren drin sind

...zur Antwort

für python:

import discord

client = discord.Client()

@client.event

async def on_message(message)

if message.author.bot:

return

if message.content.startswith("Hey"):

await message.channel.send("Hallo!")

if "Hey" in message.content:

await message.channel.send(f"Hallo {message.author.mention}")

client.run("TOKEN")

...zur Antwort