A library made for easy interactions with Hypixel Skyblock items, players and much more. Contains many useful objects, methods and utilities for extracting data and presenting it in a pretty data form. Forge 1.8.9. Currently in development.
repositories {
maven { url "https://repo.dreamys.studio/" }
}dependencies {
implementation "studio.dreamys:libSkyblock:1.1.1"
}Initialize the class by passing in an ItemStack like so:
ItemStack stack = Minecraft.getMinecraft().thePlayer.getHeldItem();
SBItem i = new SBItem(stack);
//i.getReforge()
//...Initialize the class by passing in an EntityPlayer like so:
EntityPlayer player = Minecraft.getMinecraft().thePlayer;
SBPlayer p = new SBPlayer(player);
//p.getPurse()
//...Refer to TestMod for this demo.
| Software | License |
|---|---|
| SkyblockAddons | MIT License |
| Danker's Skyblock Mod | GPL-3.0 License |
| Cowlection | MIT License |
