Skip to content

Instantly share code, notes, and snippets.

@emanzitti
emanzitti / delete-all-messages.js
Created September 18, 2018 19:12
Delete all of your messages on a Discord server
clearMessages = function (guild_id, author_id, authToken, deleted = new Set()) {
/*
* Discord: Don't copy stuff into this box
* Me: dOn'T COpy sTuFf iNtO tHIs bOx
*/
const searchURL = `https://discordapp.com/api/v6/guilds/${guild_id}/messages/search?author_id=${author_id}&include_nsfw=true`
const headers = { Authorization: authToken }
let clock = 0
interval = 500
function delay(duration) {