Skip to content

Instantly share code, notes, and snippets.

View ivmirx's full-sized avatar
☸️
may all living beings be happy

Ivan Mir ivmirx

☸️
may all living beings be happy
View GitHub Profile
@ivmirx
ivmirx / delete-all-messages.js
Last active February 22, 2025 16:41 — forked from rcx/delete-all-messages.js
Delete all your messages in a Discord channel
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] == "_") {
alert("Oops! You forgot to set the author_id. Please fill it in.");
return;
}