Skip to content

Instantly share code, notes, and snippets.

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

Faris Daffa Faris0520

:shipit:
gtw
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 29, 2024 20:13
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

This no longer works if you're alone in vc! Somebody else has to join you!

Warning

There are now two quest types ("stream" and "play")! Pay attention to the instructions!

@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);
}