Advertisement
hamster69

AeroDal Python Disnake

Jun 27th, 2025
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | Source Code | 0 0
  1. import disnake
  2. from disnake.ext import commands
  3.  
  4. intents = disnake.Intents.default()
  5. intents.message_content = True
  6. bot = commands.Bot(
  7.     command_prefix=disnake.ext.commands.when_mentioned, intents=intents)
  8.  
  9.  
  10. @bot.command()
  11. async def aero(ctx):
  12.     await ctx.send("# <:Untitleddesign10:1388159576217616487> AERODAL CODE WORKING ")
  13.  
  14.  
  15. @bot.command()
  16. async def aero2(ctx, *, message: str):
  17.     await ctx.send(f"<:Untitleddesign10:1388159576217616487> | Your message is {message}")
  18.  
  19. bot.run("bottoken")
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement