Back to Mods
Galaxy Utils

Galaxy Utils

utilitythegalaxydev

Animal Growth, Economy, and more! Galaxy Utils adds some features for servers that are missing in Early Access.

About Galaxy Utils

Galaxy Utils

Galaxy Utils is a utility plugin that aims to add in quality of life features for servers that Hytale does not yet have due to being in Early Access.

Current features include:

Missing Recipes 🔨

Support for the builder's workbench to convert all slabs back into blocks at the cost of 2 slabs -> 1 block!

Animal Growth 🐮

All baby animals will now grow into adult variants. This is completely configurable, from the time it takes for each animal to grow to the animal they grow into. You can even add animals if you want some crazy combinations. The default time for each animal is 1200 ticks (60 seconds).

Economy 💰

This plugin adds a fully functioning economy. This allows users to make money by selling items, which can then be sent to other players for trading! This is completely configurable, and the plugin currently has preset supported values for every item.

This includes the new Vault block, craftable with 15 Iron Ingots, 5 Gold Ingots, and 5 Silver Ingots. Interacting with the Vault block while holding an item will sell it for money.

Commands:

/economy value - Gives you the value of the item in your hand.

/economy bal/balance - Tells you how much money you have. Optionally, you can check other players' balances with /economy balance --player <player>

/economy pay <player> - Sends money from your balance to another player.

/economy give <player> <amount> - Requires operator permissions. Will give a player money.

/economy remove <player> <amount> - Requires operator permissions. Removes money from a player.

/economy set <player> <amount> - Requires operator permissions. Sets a player's money to the given amount.

For Developers

Hooking into the economy system from other plugins is super quick and easy. Below is an example plugin that implements a giveMoney method.

public class MyPlugin { public void giveMoney(PluginBase self, UUID target, double amount) { // Get GalaxyUtils from the plugin manager GalaxyUtils galaxyUtils = self.getPluginManager().getPlugin(GalaxyUtils.class); if (galaxyUtils == null) { // GalaxyUtils not loaded return; }

EconomyService economy = galaxyUtils.getEconomyService(); if (economy == null) { // Economy not available (shouldn&rsquo;t happen if GalaxyUtils initialized) return; }

economy.addBalance(target, amount); }

public String getFormattedBalance(PluginBase self, PlayerRef player) { GalaxyUtils galaxyUtils = self.getPluginManager().getPlugin(GalaxyUtils.class); if (galaxyUtils == null || galaxyUtils.getEconomyService() == null) { return "N/A"; }

double balance = galaxyUtils.getEconomyService().getBalance(player.getUuid()); return galaxyUtils.getEconomyService().format(balance); } } Data Storage 💾

Galaxy Utils includes a data storage system that can be tapped into by other plugins. In the config, there's a defaultValues setup that will let you set up default data values, such as economy balance. All data is stored in a json format per user. Example:

{ "players": { "4320d64d-c601-4f5d-9160-79380afd7145": { "values": { "economy.balance": 120.39999999999999 } } } }

Wanna support me and my projects? Use my Code "Galaxy" at BisectHosting to get 25% off of your first Hytale server!

Downloads
192
Created
Jan 18, 2026
Updated
Jan 20, 2026
Version
Early Access

Categories

UtilityQuality of LifeMiscellaneous

Download Mod

Download on CurseForge
Free download • 192 total downloads

Need a Server?

Run Galaxy Utils on a dedicated Hytale server with easy mod management.

Get Hytale Hosting

Frequently Asked Questions

What is Galaxy Utils ?

Animal Growth, Economy, and more! Galaxy Utils adds some features for servers that are missing in Early Access.

How do I download Galaxy Utils ?

You can download Galaxy Utils for free from CurseForge. Click the "Download on CurseForge" button on this page to go directly to the download page.

Who created Galaxy Utils ?

Galaxy Utils was created by thegalaxydev. The mod has been downloaded 192 times.

Is Galaxy Utils compatible with Hytale servers?

Galaxy Utils is designed for Hytale and can be used on both single-player and multiplayer servers. Check the mod page on CurseForge for specific compatibility information.

How do I install Galaxy Utils ?

To install Galaxy Utils : 1) Download the mod from CurseForge, 2) Place the file in your Hytale mods folder, 3) Restart the game. The mod should load automatically.