Untitled
unknown
plain_text
3 years ago
279 B
9
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...