#on_member_join not working

1 messages · Page 1 of 1 (latest)

native temple
#

Did you add it to your code?

feral beacon
#

Did you add intents=... in your code?

knotty fern
feral beacon
knotty fern
# feral beacon what

intents = discord.Intents().all()
intents.presences = True
intents.members = True

feral beacon
#

enable all intents and add

knotty fern
#

intents.presences = True
intents.members = True

#

and just use
intents = discord.Intents().all()

feral beacon
#

intents=discord.Intents.all()

#

commands.bot(......

knotty fern
knotty fern
knotty fern
#

btw I'm using slash commands, if it has something to do with it

#

client = discord.Bot(debug_guilds=['931241793083822080'])

feral beacon
knotty fern
#

I changed it to client = discord.Bot(debug_guilds=['931241793083822080'], intents=intents) , but it still doesn't work

knotty fern
knotty fern
# feral beacon any error

Nope, I'm trying to make a welcome command, I made a command where you can set the channel by using /setwelcome <ch>, and it will set to DB, but whenever someone joins it doesn't even show error in console or smth, I'm sure DB is working, as I checked the DB save data and things

  • I have on_member_join
feral beacon
#

intents = discord.Intents.default()
intents.members = True
intents.presences = True

bot = discord.Bot(intents=intents)

#

@knotty fern

knotty fern
#

okay, I'll try this

knotty fern
#

I'll send my join event if you want

feral beacon
#

ok give

knotty fern
knotty fern
#

what