Untitled
Anonymous
plain_text
04/20/2023 1:02 PM
372 B
17
Indexable
import discord
from discord.ext import commmands
intents = discord.Intents.all()
intents.message_content = True
intents.members = True
Bot = commands.Bot(command_prefix='!c',intents=intents)
@Bot.event
async def on_ready():
print("Ben Hazırım!")
Bot.run(token)Editor is loading...