This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name minesweeperblack | |
| // @version 1 | |
| // @grant none | |
| // @match https://minesweeper.online/* | |
| // ==/UserScript== | |
| var elt = document.createElement('style'); | |
| elt.innerHTML = ` | |
| .brand-link { | |
| filter: invert(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |