Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
token = YOUR_BOT_PREFIX_HERE
prefix = YOUR_BOT_TOKEN_HERE

client = commands.Bot(command_prefix= prefix)
# Create an instance of Intents and enable the events your bot will listen to
intents = discord.Intents.all() #Enable all intents

client = commands.Bot(command_prefix= prefix,intents=intents)
client.remove_command("help") #to remove the default boring help command


Expand Down