hytale-spawning-entities

Spawn visible model-based entities in Hytale using the Entity Component System.

Updated Jan 21, 2026
One-click install
npx skills add https://github.com/xDinkyx/Hytale-Colonies-Plugin --skill hytale-spawning-entities-xdinkyx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hytale-spawning-entities
Source: https://github.com/xDinkyx/Hytale-Colonies-Plugin/tree/main/.github/skills/hytale-spawning-entities
Command: npx skills add https://github.com/xDinkyx/Hytale-Colonies-Plugin --skill hytale-spawning-entities-xdinkyx

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the process of spawning visible, model-based entities within the Hytale game environment, enabling dynamic world population and interactive elements.

Core Features & Use Cases

  • Entity Creation: Instantiate entities with custom models, positions, and components.
  • Persistence: Ensures entities remain in the world across server saves.
  • Use Case: Imagine you want to add decorative elements like a minecart or a custom prop to your Hytale world. This Skill provides the exact steps to load the model, set its position, and add it to the game world so players can see and interact with it.

Quick Start

Use the hytale-spawning-entities skill to spawn a 'Minecart' entity at world coordinates (100, 65, 200).

Frequently Asked Questions about hytale-spawning-entities

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

FAQPage Schema
How do I spawn visible entities in Hytale using the Entity Component System?

To spawn visible entities in Hytale, use the Entity Component System to instantiate objects with a Holder, ModelAsset, TransformComponent, and NetworkId. This loads custom models, sets world positions, and synchronizes them with clients.

What is needed to synchronize spawned Hytale entities with game clients?

Synchronizing spawned Hytale entities with game clients requires assigning a NetworkId component and executing entity spawning logic on the world thread to ensure proper client synchronization and visible model rendering.

Can I add custom decorative props like a minecart to my Hytale world?

Yes, you can add custom decorative props like a minecart to your Hytale world. The Skill provides steps to load the model, set coordinates, and add it to the world so players can see and interact with it.

How do I ensure spawned entities persist across server saves in Hytale?

Spawned entities persist across Hytale server saves by correctly instantiating them within the Entity Component System architecture. Proper use of TransformComponent and NetworkId ensures the world population remains intact during save cycles.

What are the limitations when dynamically populating a Hytale world with model-based entities?

Limitations when dynamically populating a Hytale world include strict adherence to the Entity Component System architecture. You must execute spawning on the world thread and properly configure ModelAsset and NetworkId components to avoid synchronization failures.