Code Patterns

Copy-paste examples for common plugin tasks. Commands, events, ECS, GUI, and more.

← Back to Patterns
inventory

Give Item to Player

Give an item to a player inventory.

Example Code

java
// Create item stack
ItemStack item = new ItemStack("hytale:iron_sword", 1);

// Get player inventory and add item
Inventory inventory = player.getInventory();
inventory.addItem(item);

// For specific slot:
// inventory.setItem(slot, item);

Thread Safety

Inventory operations should be done on world thread.

Common Mistakes

Creating ItemStack with invalid item ID. Not checking if inventory is full before adding.