Skip to content

Instantly share code, notes, and snippets.

View Faris0520's full-sized avatar
:shipit:
bobok

Faris Daffa Faris0520

:shipit:
bobok
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 10, 2025 04:37
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@m-Phoenix852
m-Phoenix852 / discord-token-logger.js
Created August 26, 2020 07:45
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}