Always use a real User-Agent header so the website thinks you are a standard browser.
To learn how to create configurations (configs) for OpenBullet or SilverBullet, you need to understand that these tools are essentially specialized web scrapers. They automate the process of interacting with a website, like logging in or checking data. 🛠️ The Core Concept A "config" is a set of instructions. It tells the software: (The URL). What to send (Username, password, headers). What to look for (Success or failure messages). 📝 Step-by-Step Configuration Workflow 1. The Request Block Everything starts with a HTTP Request . Find the login page of the site.
Capture the "POST" data (the info sent when you click login).
Look for a specific word in the page source (e.g., "Welcome" or "My Account"). Failure Check: Look for "Invalid password" or "Try again."
Once the site responds, the tool needs to know if the login worked.
Use your browser's "Network" tab (F12) to see exactly what happens when you log in manually.
Use a to sort these into "Success" or "Fail." 3. Capturing Data
In SilverBullet, add a "Request" block and paste the URL and POST data. 2. Parsing (The "Brain")


| Creator | Mod Details | Type | Version | Download | |
|---|---|---|---|---|---|
| Pink | PinkCore PinkCore is a Core mod which aims to give you as much of a 'PC experience' as possible! This includes adding information to your game such as the Mappers names, Mod Requirements, Custom Colours, Custom Difficulty names, Burn Marks, and more! | Core | 1.7.0 | ||
VariousDarknight1050, EnderdracheLP, Metalit | Song Downloader Allows for the downloading of custom songs at runtime | Core | 0.4.4 | ||
VariousDarknight1050, RedBrumbler | Quest UI A library used to add Mod Settings and other UI. | Core | 0.13.5 | ||
VariousDarknight1050, Metalit | Playlist Manager Adds custom playlists to the game. | Core | 0.2.3 | ||
| Darknight1050 | Song Loader Loads Custom Songs at Runtime. | Core | 0.9.3 | ||
| Sc2ad | Codegen A core library used by almost every mod. | Core | 0.22.0 | ||
| Sc2ad | Custom-Types Another core library used by almost every mod. | Core | 0.15.9 |
Always use a real User-Agent header so the website thinks you are a standard browser.
To learn how to create configurations (configs) for OpenBullet or SilverBullet, you need to understand that these tools are essentially specialized web scrapers. They automate the process of interacting with a website, like logging in or checking data. 🛠️ The Core Concept A "config" is a set of instructions. It tells the software: (The URL). What to send (Username, password, headers). What to look for (Success or failure messages). 📝 Step-by-Step Configuration Workflow 1. The Request Block Everything starts with a HTTP Request . Find the login page of the site.
Capture the "POST" data (the info sent when you click login).
Look for a specific word in the page source (e.g., "Welcome" or "My Account"). Failure Check: Look for "Invalid password" or "Try again."
Once the site responds, the tool needs to know if the login worked.
Use your browser's "Network" tab (F12) to see exactly what happens when you log in manually.
Use a to sort these into "Success" or "Fail." 3. Capturing Data
In SilverBullet, add a "Request" block and paste the URL and POST data. 2. Parsing (The "Brain")