Ich könnte dir einen Bot programmieren schnell, oder du benutzt XavinBot
Antwort
Antwort
Nehm einfach uptimerobot.com und lasse ihn auf replit.com laufen.
such bei YouTube mal nach bothosting on replit
Antwort
Da musst du im Internet vermutlich mal im internet neue Zertifikate installieren, jedoch musst du es nicht da eventuell (mein Freund) Viren drin sind
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")