Skip to content

Instantly share code, notes, and snippets.

View ivmirx's full-sized avatar
🐙

Ivan Mir ivmirx

🐙
View GitHub Profile
@ivmirx
ivmirx / delete-all-messages.js
Created November 9, 2023 19:12 — forked from rcx/delete-all-messages.js
Delete all your messages in a Discord channel
/*
* Discord: Don't copy stuff into this box
* Me: dOn'T COpy sTuFf iNtO tHIs bOx
*/
clearMessages = function (guild_id, author_id, authToken, deleted = new Set()) {
if (guild_id[0] == "_" && guild_id[guild_id.length - 1] == "_") {
alert("Oops! You forgot to set the guild_id. Please fill it in.")
return;
}
if (author_id[0] == "_" && author_id[author_id.length - 1] == "_") {