Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import discord
- from discord.ext import commands
- bot = commands.Bot(command_prefix='!', description="ayuda bot") #Comando
- bot.remove_command("help") # Borra el comando por defecto !help
- @bot.command()
- async def hola(ctx): #Comando a decir
- await ctx.send('Qué tal estas?') #Mensaje que dira el bot
- #Cuándo Ejecutes el comando en discord !hola, el bot dira Qué tal estas?
- @bot.event
- async def on_ready():
- print("BOT listo!")
- bot.run('TU TOKEN AQUÍ') #OBTEN UN TOKEN EN: https://discord.com/developers/applications
Add Comment
Please, Sign In to add comment