JavaScript
x
6
1
from discord.ext import commands
2
bbot = commands.Bot(command_prefix='!')
3
@bbot.command()
4
async def test(ctx, arg):
5
await ctx.send(arg)
6
This is not working. I totally followed what documentation says, but the bot doesn’t repond to me when I type “!test hello”
It should work like this, but mine has nothing respond to me, idk what’s wrong at all
This is the original documentation https://discordpy.readthedocs.io/en/latest/ext/commands/commands.html#parameters
Advertisement
Answer
Your whole code should look like this. You are in the right documentation keep going.
P.S: It is a best practice to name it bot
instead of bbot
JavaScript
1
20
20
1
import discord
2
from discord.ext import commands
3
4
intents = discord.Intents().all() # this is a new thing
5
bbot = commands.Bot(command_prefix="!", intents=intents)
6
7
@bbot.event
8
async def on_ready():
9
print("Logged in as")
10
print(bot.user.name)
11
print("------")
12
# here you can start your background tasks
13
#randomtask.start()
14
15
@bbot.command()
16
async def test(ctx, arg):
17
await ctx.send(arg)
18
19
bbot.run('Token Here')
20