Skip to content

Instantly share code, notes, and snippets.

@Fatih5252
Created December 26, 2023 15:34
Show Gist options
  • Save Fatih5252/24f594f5318044fa0323a8a9b73b041c to your computer and use it in GitHub Desktop.
Save Fatih5252/24f594f5318044fa0323a8a9b73b041c to your computer and use it in GitHub Desktop.
prefix command
# pip install discord.py
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.message_context = True
bot = commands.Bot(command_prefix="!", intents=intents)
@bot.command()
async def ping(ctx):
await ctx.send("Pong!)
bot.run(BOT TOKEN)
# pls dont share anyone your bot token!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment