My collection of scripts for Discord.
friend_invitelink.js
: Generate a friend invite linkclientside_nitro.js
: Spoof the client and enable client side Discord Nitro
I am in no way, shape, or form responsible for any damage caused by the usage of these snippets. You use them at your own risk! I am not related to Discord in any way.
Using the Chrome dev tools you can do some fun stuff with the Discord client. As they are disabled on the stable version you need to use the canary version which is used to test new features before they get released to the stable version. It's usage is totally legal and within ToS. Discord does not promote it but encourages users to use it to find bugs, etc.
You can download the latest Canary builds here:
Moved to https://api.fmhy.net
Application ID | Application name | Boost level | Max participants |
---|---|---|---|
755600276941176913 | YouTube Together(Old) | 0 | Unlimited |
880218394199220334 | Watch Together(New) | 0 | Unlimited |
755827207812677713 | Poker Night | 1 | 25 |
773336526917861400 | Betrayal.io | 0 | Unlimited |
814288819477020702 | Fishington.io | 0 | Unlimited |
832012774040141894 | Chess In The Park | 1 | Unlimited |
const Discord = require("discord.js") | |
const client = new Discord.Client({ ws: { properties: { $browser: "Discord iOS" }} }) | |
client.on("ready", () => { | |
client.user.setActivity(`hentaiz`, { type: 3, browser: "DISCORD IOS" }) | |
console.log("Ready") | |
}) | |
client.login('token') |
// We support the GET, POST, HEAD, and OPTIONS methods from any origin, | |
// and allow any header on requests. These headers must be present | |
// on all responses to all CORS preflight requests. In practice, this means | |
// all responses to OPTIONS requests. | |
const corsHeaders = { | |
"Access-Control-Allow-Origin": "*", | |
"Access-Control-Allow-Methods": "GET,HEAD,POST,OPTIONS", | |
"Access-Control-Max-Age": "86400", | |
} |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.This is an unofficial list of all Discord guild features, for an official list refer to the Discord Developer documentation.
Guild Feature | Description |
---|---|
ANIMATED_ICON |
Allows the server to set an animated icon. Used in server boosting, level 1 |
BANNER |
Allows the server to set a banner which is shown at the top of all the channels. Used in server boosting, level 2 |
COMMERCE |
Given to servers with a developer license, allows them to create and use store channels |
COMMUNITY |
Given to servers that enable community in server settings, also gives access to the news feature which allows servers to create announcement channels |
DISCOVERABLE |
Given to servers that enabled discovery guidelines |
ENABLED_DISCOVERABLE_BEFORE |
Given to servers that enabled discovery at any point |