hytale-inventory

Manage player inventories in Hytale plugins using ItemStack and PageManager APIs.

13|Updated Feb 14, 2026
One-click install
npx skills add https://github.com/JBurlison/Hytale-Mod-Agent --skill hytale-inventory
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hytale-inventory
Source: https://github.com/JBurlison/Hytale-Mod-Agent/tree/main/.github/skills/hytale-inventory
Command: npx skills add https://github.com/JBurlison/Hytale-Mod-Agent --skill hytale-inventory

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill streamlines the management of player inventories within Hytale plugins, simplifying tasks like item manipulation and UI interactions.

Core Features & Use Cases

  • Inventory Access: Retrieve and modify player inventories, hotbars, armor, and storage.
  • Item Manipulation: Create, add, and remove ItemStack objects, including those with custom metadata and durability.
  • UI Management: Open and close various inventory-related UI pages for players.
  • Use Case: Automatically equip a player with starting gear on login by adding specific ItemStack objects to their hotbar and armor slots.

Quick Start

Give the player a stone item stack with 64 items in their storage.

Frequently Asked Questions about hytale-inventory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage player inventories in a Hytale plugin?

You can manage Hytale player inventories in plugins by using the Inventory, ItemStack, ItemContainer, and PageManager APIs to access storage, manipulate items, and open UI pages. Java imports for Hytale server item and entity management are required.

How do I create and add items to a Hytale player hotbar?

To add items to a Hytale player hotbar, create ItemStack objects and add them to the player's hotbar slots using the Inventory API. You can attach custom metadata and set durability to these ItemStack objects before adding them.

Can I open inventory UI pages for players using Hytale plugin APIs?

Yes, you can open and close various inventory-related UI pages for players using the PageManager API. This UI management feature facilitates interactions by displaying custom inventory interfaces directly to the player.

What Java imports do I need for Hytale item and entity management?

You need Java imports for Hytale server item and entity management to use this Skill. These imports are required to facilitate accessing player inventories, creating ItemStack objects, and attaching custom metadata within your plugin.

Does the Hytale inventory API support custom metadata and durability for items?

Yes, the Hytale inventory API supports setting durability and attaching custom metadata to items. You can create ItemStack objects with these custom properties and add them to player storage, hotbar, or armor slots.

What is the best way to automatically equip starting gear on player login in Hytale?

The best way to equip starting gear on login is to use the Hytale Inventory API to add specific ItemStack objects to a player's hotbar and armor slots. This use case is directly facilitated by the plugin's inventory access features.