hytale-notifications

Send in-game notifications to Hytale players via NotificationUtil with PacketHandler and messages.

Updated Jan 19, 2026
One-click install
npx skills add https://github.com/Reign-software/hyforged --skill hytale-notifications-reign-software
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hytale-notifications
Source: https://github.com/Reign-software/hyforged/tree/main/.github/skills/hytale-notifications
Command: npx skills add https://github.com/Reign-software/hyforged --skill hytale-notifications-reign-software

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Sends in-game notifications to players in Hytale plugins. Notifications appear similar to item pickup messages and can display a primary message, secondary message, and an optional icon.

Core Features & Use Cases

  • Send primary and secondary text with an optional icon using the NotificationUtil.
  • Support common notification types like item pickups, toasts, and alerts.
  • Reusability through easily craftable icons from ItemStack metadata.

Quick Start

Call NotificationUtil.sendNotification with a player's PacketHandler, a primary Message, a secondary Message, and an ItemWithAllMetadata icon to display a notification.

Frequently Asked Questions about hytale-notifications

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

FAQPage Schema
How do I send in-game notifications to players in Hytale plugin development?

To send in-game notifications to players in Hytale plugin development, call NotificationUtil.sendNotification with the player's PacketHandler, primary and secondary Messages, and an optional icon. This displays alerts similar to item pickup messages.

Does the Hytale NotificationUtil support custom icons for player alerts?

Yes, the Hytale NotificationUtil supports custom icons for player alerts by accepting an ItemWithAllMetadata object. You can craft these icons easily from ItemStack metadata to display alongside your primary and secondary text.

What do I need to display item pickup messages and toasts in a Hytale plugin?

To display item pickup messages and toasts in a Hytale plugin, you need access to the player's PacketHandler and the NotificationUtil API. These allow you to assemble and deliver notifications with primary and secondary text.

Can I use NotificationUtil to show both primary and secondary text in Hytale alerts?

Yes, you can use NotificationUtil to show both primary and secondary text in Hytale alerts. The API assembles the notification using these two distinct message fields alongside an optional item icon before delivering it.

What is the best way to handle player-facing messages in Hytale plugins?

The best way to handle player-facing messages in Hytale plugins is using the NotificationUtil API to send structured notifications. It supports primary and secondary text with optional icons, covering alerts, toasts, and item pickups.

Are there limitations when using NotificationUtil for Hytale player notifications?

A key limitation of using NotificationUtil for Hytale player notifications is the strict requirement for a player's PacketHandler. Without direct PacketHandler access, the API cannot assemble or deliver the notification to the target player.