Skip to content

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.

License

Notifications You must be signed in to change notification settings

dxxxxy/libSkyblock

Repository files navigation

libSkyblock

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.

Importing

repositories {
    maven { url "https://repo.dreamys.studio/" }
}
dependencies {
    implementation "studio.dreamys:libSkyblock:1.1.1"
}

SBItem

Initialize the class by passing in an ItemStack like so:

ItemStack stack = Minecraft.getMinecraft().thePlayer.getHeldItem();
SBItem i = new SBItem(stack);
//i.getReforge()
//...

SBPlayer

Initialize the class by passing in an EntityPlayer like so:

EntityPlayer player = Minecraft.getMinecraft().thePlayer;
SBPlayer p = new SBPlayer(player);
//p.getPurse()
//...

Demo

Refer to TestMod for this demo.

img.png

Credits

Some components/inspirations were taken from these open-source projects.

Software License
SkyblockAddons MIT License
Danker's Skyblock Mod GPL-3.0 License
Cowlection MIT License

About

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.

Topics

Resources

License

Stars

Watchers

Forks

Languages