Skip to content

Latest commit

History

History
19 lines (15 loc) · 385 Bytes

File metadata and controls

19 lines (15 loc) · 385 Bytes

Computer-Cell-bot

v0.01

Defining your own command

@bot.command("ReplaceMe")asyncdefReplaceMe(ctx):
awaitctx.send("Response to the replace me command.")

Usage

In discord chat type >ReplaceMe to run your command.

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