Supersebi3 / Selfbot

My discord.py selfbot code.
12 stars 13 forks source link

Discord.py/ Pycord version? #2

Open pickaxe828 opened 2 years ago

pickaxe828 commented 2 years ago

What is the version of Discord.py/ Pycord required to run this? AFAIK they removed bot=False argument a while ago.

BTW how about intents?

ghost commented 2 years ago

Ah, about intents it really depends up to you and how your bot is supposed to work. I usually go by intents = discord.Intents().all() but if you want to have specific intents enabled then try

intents = discord.Intents.default()
intents.members = True 
client = commands.Bot(command_prefix=',', intents=intents)