A Minecraft Hypixel Skyblock Dungeon script.
You can use your own API key to see user stats.
Base on Minescript
- Recently, the Odin mod has occasionally been displaying error codes related to 429 or 500, which often prevents us from quickly determining whether a user’s gear, secrets, and other items meet our requirements.
- So, I created this script to allow users to send requests by applying for your own API keys.
- Also, all data returned from Hypixel is processed locally; your API key will not be uploaded anywhere other than Hypixel!
I formatted the output based on Odin's output format. — shout-out to Odin!

-
Download Minescript from Modrinth.
-
Make sure you have Python in you computer.
-
Install the dependencies:
pip install requests nbt
-
Download the
dungeon_stats_display.pyfile. -
Put
dungeon_stats_display.pyfile to the minscript foldor. (which might be in.minecraft/minescriptdepends on what client you are using) -
DON'T forget to generate your API key at Hypixel developer.
-
After enter your Minecraft, type
\dungeon_stats_displayin chat. (which start this script) -
Type
!dsd key YOUR_API_KEY(replace YOUR_API_KEY with your autual key)- You can also type
!dsd keyto see if your key is set correctly.
- You can also type
-
You can now join any party finder! You will see the stats of the player who join!
-
If you want the script to run automatically when the game starts, you need to add this line to
.minecraft/minescript/config.txt:autorun[*]=\dungeon_stats_display
At first, I used the Minescript EventQueue to call register_chat_listener, but perhaps due to issues with my other mods, it couldn't capture my chat messages. Since I have so many mods, I didn't want to try all of them.
So, in this version, chat messages are detected by reading .minecraft/logs/latest.log.
However, regarding the !dsd command, it still uses Minescript's OUTGOING_CHAT_INTERCEPT.
- The hover function is not working right now, so you can not autually see what armor are user wearing.