Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 385 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 385 Bytes

Computer-Cell-bot

v0.01

Defining your own command

@bot.command("ReplaceMe")
async def ReplaceMe(ctx):
    await ctx.send("Response to the replace me command.")

Usage

In discord chat type >ReplaceMe to run your command.

@bot.command("ReplaceMe")
async def ReplaceMe(ctx, name):
    await ctx.send(f"Response to the replace me command. {name}")