
Scoredex 2
Cobblemon-based scoreboard generation mod. Fork of Scoredex by Tellsanguis
Scoredex 2
An expanded fork of the Scoredex mod by Tellsanguis.
📋 Description
Scoredex is a Minecraft mod that provides various scoreboards via a small configurable web server, displaying how many Pokémon have been seen, captured, hatched, etc., by the players.
It is fully server-side and does not require any client-side installation.
The following scoreboards are available:
- captured wild pokémons
- captured shiny pokémons
- evolved pokémons
- hatched pokémons
- seen pokémons
- caught pokémons
⚠️ The "captured wild pokémons" and "caught pokémons" scoreboards do not count the same thing! The former counts the number of different pokémons captured in the wild, while the latter the different pokémons registered as caught in the pokedex!
✨ Functionalities
- Automated generation of scoreboard images
- Periodic updates of the players' scores
- Hosting of the generated images on an integrated web server
- Heavily customizable
- Scoreboard titles
- Number of displayed players, possibly on multiple columns
- Scoreboard colors
- And more
⚙️ Configuration
The configuration file is automatically created when first launching your server with the mod.
It will be located in your server's config folder, as scoredex.json.
Default configuration
{
"advancedLogging": false,
"port": 8080,
"updateIntervalMinutes": 5,
"defaultScoreboard": "CAUGHT",
"captureTitle": "Scoreboard - Captured Wild Pokémon",
"shinyTitle": "Scoreboard - Captured Shiny",
"evolvedTitle": "Scoreboard - Evolved Pokémon",
"hatchedTitle": "Scoreboard - Hatched Pokémon",
"seenTitle": "Scoreboard - Seen Pokémon",
"caughtTitle": "Scoreboard - Pokémon Caught",
"timeZone": "Europe/Paris",
"autoDetectDataFolder": true,
"manualDataFolderPath": "",
"maxPlayers": 100,
"rowsPerColumn": 10,
"showLastUpdate": true,
"lastUpdateText": "Last update: ",
"colors": {
"background": "#141414",
"titleBackground": "#3232C8",
"titleText": "#FFFFFF",
"firstPlaceText": "#FFFFFF",
"firstPlaceBackground": "#FFD700",
"secondPlaceText": "#FFFFFF",
"secondPlaceBackground": "#C0C0C0",
"thirdPlaceText": "#FFFFFF",
"thirdPlaceBackground": "#CD7F32",
"text": "#FFFFFF",
"footerText": "#FFFF00"
}
}
Configuration options
| Option | Description | Default values |
|---|---|---|
| advancedLogging | Whether to do extra logging of the mod's activities. Only truly relevant for debugging. | false |
| port | The port at which the web server will be open | 8080 |
| updateIntervalMinutes | Scoreboard update frequency (in minutes) | 5 |
| defaultScoreboard | The default scoreboard for the scoreboard.png url | "CAUGHT" |
| captureTitle | Title displayed on the wild pokémon captured scoreboard | "Scoreboard - Captured Wild Pokémon" |
| shinyTitle | Title displayed on the shiny pokémon captured scoreboard | "Scoreboard - Captured Shiny" |
| evolvedTitle | Title displayed on the evolved pokémon scoreboard | "Scoreboard - Evolved Pokémon" |
| hatchedTitle | Title displayed on the hatched pokémon scoreboard | "Scoreboard - Hatched Pokémon" |
| seenTitle | Title displayed on the seen pokémon scoreboard | "Scoreboard - Seen Pokémon" |
| caughtTitle | Title displayed on the caught pokémon scoreboard | "Scoreboard - Pokémon Caught" |
| timeZone | Server timezone, for dating scoreboard updates | "Europe/Paris" |
| autoDetectDataFolder | Whether to automatically detect pokémon data folder | true |
| manualDataFolderPath | Manual path to the pokémon data folder (only used if autoDetectDataFolder is set to false | "" |
| maxPlayers | Maximum number of players displayed on the board | 100 |
| rowsPerColumn | Number of lines displayed per column | 10 |
| showLastUpdate | Whether to display the scoreboard update time on the pictures | true |
| lastUpdateText | The text to display before the update time on the scoreboard (only if showLastUpdate is set to true) | "Last update: " |
| colors | Detailed configuration of the scoreboard images colorations | See next section |
Colors customization
The colors’ configuration component can be fully customized by modifying the following colors:
background: Overall board background colortitleBackground: Title bar background colortitleText: Title text colorfirstPlaceText: First place player text colorfirstPlaceBackground: First place player background colorsecondPlaceText: Second place player text colorsecondPlaceBackground: Second place player background colorthirdPlaceText: Third place player text colorthirdPlaceBackground: Third place player background colortext: Text color for the rest of the boardfooterText: Footer text color (update date, only if theshowLastUpdateconfig is neabled)
🖼️ Images hosting
The images are made available at the following addresses:
| Scoreboard | URL |
|---|---|
| Captured | http://<server IP>:<port>/captured.png |
| Shiny | http://<server IP>:<port>/shiny.png |
| Evolved | http://<server IP>:<port>/evolved.png |
| Hatched | http://<server IP>:<port>/hatched.png |
| Seen | http://<server IP>:<port>/seen.png |
| Caught | http://<server IP>:<port>/caught.png |
The default scoreboard (at http://<server IP>:<port>/scoreboard.png) will redirect to the
one it is configured to, among the afore-listed ones.
⚠️ Important notes
- The configured port must be open to outside connections to make it available to the broader network.
- If the mod does not work but nothing related appears in your server logs, please check your firewall or reach out to your server host.
❓ Support
- Via Codeberg issues, on the source repository (preferred method)
- Via Discord, on my server
- Please do NOT report issues to the original creator, this fork has been heavily modified, and most issues would be completely irrelevant to them