Headstart is a Hytale mod that allows you to customize the starting experience for a player. Depending on the configuration, when a player first logs in, logs in with an empty inventory, or dies with an empty inventory, they are granted the items specified in the configuration. By default, items are only granted on the initial login.
If you are the op on a server, I recommend either generating a config file ahead of time or logging in, configure Headstart, run /headstart --reset, clear out your inventory, and log back in.
There are two method of mod acquisition
- Clone and compile this repo following the steps here
- Download the mod from CurseForge
Copy the mod into the Mods folder for your Hytale install. View the official Hytale documentation for more information.
Headstart allows you to add up to a full hotbar worth of items to start the game with. The items you choose are fully configurable and the mod comes with two commands to make item management easier.
Headstart has two commands.
- /headstart
- /hotbarcfg
/headstart allows you to modify the behavior of headstart itself.
- firstLogin (default true)
- onDeath (default false)
- reset
firstLogin - Whether Headstart only applies to the first login onDeath - Whether Headstart applies after death reset - Resets the settings to default and clears the known players, allowing a player to receive items when they next log in with an empty inventory.
/headstart --firstLogin false
/headstart --onDeath true
/headstart --reset
/headstart --firstLogin true --onDeath false
/hotbarcfg lets you customize what items are received when a player logs in.
Required Arguments
- slot (1-9)
- itemId (a String)
Default Arguments
- durability (default 100.0)
- maxDurability (default 100.0)
- amount (default 1)
# Setting slot 1 to have 50 torches
/hotbarcfg 1 Furniture_Crude_Torch --durability 0 --maxDurability 0 --amount 50
# Setting slot 2 to have a scrap pickaxe with default durability
/hotbarcfg 2 Tool_Pickaxe_Scrap
# Setting slot 3 to have a crude hatchet with far more durability than is reasonable
/hotbarcfg 3 Tool_Hatchet_Crude --durability 1000 --maxDurability 1000