Status 403 when deleting messages #483
Replies: 2 comments 2 replies
-
Ran into same issue, this is what I did.
However I am waiting for an update to fix trying to delete messages written by bots as a response to bot commands usage when you lack the permissions to delete those messages. |
Beta Was this translation helpful? Give feedback.
-
If the 403 error is because of a bot: In Regex enter this:
This works specifically with a GPT bot on the server I'm in. (?!\s*$) = Whitespace: the bot in my server often posts posts that are only whitespace, aka: no characters at all. This skips posts with no input. (?!.*\bwarn\b) = The other post the bot makes contains the word "Warn", this skips all posts that contain the word "Warn" Replace these with whatever unique words or phrases the bot in the server you are trying to avoid uses. |
Beta Was this translation helpful? Give feedback.
-
Hey guys! This is my first post here and I need your help.
I've been using Undiscord to mass-delete my own messages in a Discord server. The server uses DynoBot, so when I run the tool, it detects DynoBot's messages as my own messages and tries to delete them but fails to do so, thus giving error 403 messages. It runs through the same set of DynoBot messages during every single page, and it's causing the script to run slowly and eventually crash the browser tab.
Any ideas on how to stop Undiscord from trying to delete DynoBot messages?
Beta Was this translation helpful? Give feedback.
All reactions