we’re finally back from thanksgiving break
new snipe groups released
but the bot didn’t send a message in the group3 server and only sent one in my personal server
what’s the problem?
probably discord server perms
i went into server settings, channel settings, role settings, member settings
did literally everything i could to allow this bot to have perms to access channels and send messages
but it still didnt work
whats the problem???
.
.
.
instead of find channel by channel name, find channel by channel id instead
before:
channel = discord.utils.get(bot.get_all_channels(), name="snipe-bot")
after:
channel = bot.get_channel(1439880595424415765)
to find a discord channel’s channel id:
- turn on developer mode on your discord account
- go to user settings
- search developer
- right click on the channel you want to find the id of
- copy channel id
and it works :DD
