Back to mods
Item Pin Board project artwork

CurseForge · Hytale mod

Item Pin Board

Pin any item to your HUD to keep track of resources at a glance -- other mods can integrate via a simple API to display their own pinned items.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Item Pin Board release should I use?

Updated 6 months ago
Latest stable file ItemPinBoard-1.0.1.jar
Game version Not listed
Mod system Built-in Hytale mod system

Item Pin Board ItemPinBoard-1.0.1.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should Item Pin Board be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does Item Pin Board ItemPinBoard-1.0.1.jar need?

ItemPinBoard-1.0.1.jar. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add Item Pin Board without breaking your instance.

Built for Item Pin Board ItemPinBoard-1.0.1.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use ItemPinBoard-1.0.1.jar. It targets Hytale; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside ItemPinBoard-1.0.1.jar. It opens that exact file at the source.

About this project

What does Item Pin Board add?

ItemPinBoard

ItemPinBoard is a server-side Hytale mod that adds a persistent HUD overlay for tracking items. Players can pin any item to their screen and
always see its icon and quantity -- perfect for gathering resources, preparing crafting materials, or keeping track of what's needed. The HUD
position, scale, and visibility are fully customizable per player, and everything is saved across server restarts.

Commands

All interaction runs through a single command:

  • /pin -- Opens the browser UI where you can search items, pin/unpin them, and manage your list
  • /pinconfig -- Adjust HUD position, scale, and toggle visibility per mod

API for Mod Developers

Other mods can use the ItemPinBoardAPI to pin items to a player's HUD. Each mod's pins are tracked separately, and players can toggle
visibility per mod in settings. The modId parameter identifies which mod a pin belongs to -- this way multiple mods can pin the same item
independently, and players can show or hide pins per mod. Since Hytale uses isolated classloaders, ItemPinBoard publishes its classloader via
System.getProperties(), so other mods can integrate through reflection without a compile-time dependency -- making ItemPinBoard fully
optional.

ItemPinBoardAPI api = ItemPinBoardAPI.get();

api.pin(player, playerRef, "Stone", 64, "YourModId");
api.update(player, playerRef, "Stone", 32, "YourModId");
api.unpin(player, playerRef, "Stone", "YourModId");
api.unpinAll(player, playerRef, "YourModId");
api.getItems(playerUuid, "YourModId");
api.isPinned(playerUuid, "Stone", "YourModId");

Project description from CurseForge.

Recent files

Item Pin Board releases and Hytale builds

2 of 2 releases match

Looking for an older file? The official CurseForge project page is in Resources.