1.8 KiB
1.8 KiB
title, type, weight
| title | type | weight |
|---|---|---|
| Prerequisites | docs | 1 |
Before you start developing Hytale plugins, you need to set up your development environment.
Java 25
Hytale plugins require Java 25 or later. Download and install the JDK from:
- Eclipse Temurin (Recommended)
- Oracle JDK
Verify your installation:
java --version
# Should output: openjdk 25.x.x or similar
Gradle
Hytale plugins use Gradle as the build system. You can either:
- Use the Gradle Wrapper (recommended) - included in the project template
- Install Gradle globally from gradle.org
IDE (Optional)
We recommend using one of these IDEs:
{{< tabs items="IntelliJ IDEA,Eclipse,VS Code" >}} {{< tab >}} IntelliJ IDEA (Recommended)
- Download IntelliJ IDEA (Community or Ultimate)
- Open your plugin project folder
- IntelliJ will automatically detect the Gradle project
- Wait for the project to sync
{{< /tab >}} {{< tab >}} Eclipse
- Download Eclipse IDE for Java Developers
- Install the Buildship Gradle Integration plugin
- Import as a Gradle project
{{< /tab >}} {{< tab >}} VS Code
- Install VS Code
- Install the Extension Pack for Java
- Install the Gradle for Java extension
- Open the project folder
{{< /tab >}} {{< /tabs >}}
Hytale Game
You need the Hytale game installed:
- Download and install the Hytale Launcher
- Launch the game at least once to download all files
Next Steps
Once your environment is set up, proceed to Building and Running to set up the server and build your first plugin.