TheLocalAdmin profile picture

Discord Suite

Webhooks, Snowflake Decoders, Invite Checkers & Developer Tools

🎮 Discord ⚡ Webhooks 🔍 Snowflake 🛡️ Tools

Discord Tools Console

Payload Composer Messaging
Webhook Administration Management
Name-
Guild ID-
Channel ID-
HypeSquad House Switcher Console Method

You can manually assign yourself to a HypeSquad house using Discord's developer console. Warning: Never share your personal Discord token with anyone.

  1. Open Discord in a web browser (discord.com/app).
  2. Press Ctrl + Shift + I (Windows) or Cmd + Option + I (Mac) to open Developer Tools.
  3. Navigate to the Console tab.
  4. Copy the script below, replace PASTE_YOUR_TOKEN_HERE with your user token, and select your houseId (1 = Bravery, 2 = Brilliance, 3 = Balance).
const houseId = 3; // 1: Bravery, 2: Brilliance, 3: Balance
const myToken = "PASTE_YOUR_TOKEN_HERE";

fetch("/api/v9/hypesquad/online", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": myToken,
  },
  body: JSON.stringify({ house_id: houseId }),
}).then(r => console.log(r.status === 204 ? "✅ Joined house " + houseId : "❌ " + r.status));
Snowflake Decoder Offline Utility
Timestamp-
Age-
Worker ID-
Process ID-
Server Invite Checker Public API
Server Name-
Members-
Online-
Channel-
Session Audit Logs
Session logs are empty.
How to obtain a Webhook URL
  1. Open Discord and navigate to your Server Settings.
  2. Select Integrations, then click Webhooks.
  3. Click New Webhook.
  4. Assign a name, select a channel, and click Copy Webhook URL.
Obtaining User & Role IDs for Pings

Enable Developer Mode: User Settings > Advanced > toggle Developer Mode ON.

Right-click any user or role in Discord and select Copy ID, then paste into the Ping Generator.