Skip to content

Instantly share code, notes, and snippets.

View Slyrith's full-sized avatar
:dependabot:
Too many project...

Sly Slyrith

:dependabot:
Too many project...
View GitHub Profile
@Slyrith
Slyrith / all-discord-verified-gameid.txt
Last active March 4, 2026 20:58
All discord verified game id, 10138 parsed entries.
1022248949865791588 - MONSTER HUNTER RISE
1025084469306200064 - MONSTER HUNTER RISE: SUNBREAK DEMO
1067552066454695965 - MARVEL SNAP
1067554911358832721 - Goose Goose Duck
1080277149623271444 - Hogwarts Legacy
1080279445153263686 - Sons Of The Forest
1095820752877535262 - Crab Champions
1113966530531704943 - Diablo IV
1121201675240210523 - Honkai: Star Rail
1124108180125921400 - Crab Game
@Slyrith
Slyrith / spawn.css
Created December 2, 2022 21:32
unity
using System;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using Unity.VisualScripting;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UIElements;
using Vector3 = UnityEngine.Vector3;
@Slyrith
Slyrith / minesweeperOnlineBlackTheme.js
Created November 25, 2022 12:27
A black theme for minesweeper.online
// ==UserScript==
// @name minesweeperblack
// @version 1
// @grant none
// @match https://minesweeper.online/*
// ==/UserScript==
var elt = document.createElement('style');
elt.innerHTML = `
.brand-link {
filter: invert();
@Slyrith
Slyrith / ColorBlock.lua
Created November 25, 2022 09:30
Color Block Roblox Script
getgenv().detectgoodorbad = false -- wouldnt recommend
getgenv().autotp = false
for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v.Name == "BanBehavior" and v.Parent then
v:Destroy()
else
if v.Name == "CheckCheat" and v.Parent then
v:Destroy()
end
@Slyrith
Slyrith / index.js
Created November 21, 2022 01:37
Aoi.js v6.0.0 setup
const aoijs = require("aoi.js")
const bot = new aoijs.AoiClient({
token: "DISCORD BOT TOKEN",
prefix: "DISCORD BOT PREFIX",
intents: ["guilds", "guildMessages", "MessageContent"]
})
//Events
bot.onMessage()
@Slyrith
Slyrith / index.js
Created November 21, 2022 01:21
Aoi.js V5 Setup
const aoijs = require("aoi.js")
const bot = new aoijs.AoiClient({
token: "DISCORD BOT TOKEN",
prefix: "DISCORD BOT PREFIX",
intents: ["GUILDS", "GUILD_MESSAGES"]
})
//Events
bot.onMessage()