@@ -84,7 +84,19 @@ git --version
8484
8585## Setting Up Your Workspace
8686
87- ### 1. Clone the Plugin Template
87+ ### 1. Add HytaleServer.jar Dependency
88+
89+ Before you can start modding, you need to add the HytaleServer.jar file as a dependency:
90+
91+ 1 . ** Download HytaleServer.jar** using the [ Hytale Downloader] ( link-to-hytale-support-guide )
92+ 2 . ** Add to IntelliJ IDEA** :
93+ - Click on ** "File"** at the top left
94+ - Go to ** "Project Structure"**
95+ - Go to ** "Libraries"**
96+ - Click on the ** + icon**
97+ - Select the ** HytaleServer.jar** you downloaded
98+
99+ ### 2. Clone the Plugin Template
88100
89101Instead of creating an empty directory, we'll use the official Hytale plugin template:
90102
@@ -94,7 +106,7 @@ git clone https://github.com/HytaleModding/plugin-template.git MyFirstMod
94106cd MyFirstMod
95107```
96108
97- ### 2 . Configure the Project
109+ ### 3 . Configure the Project
98110
99111Remove the existing Git history and initialize your own:
100112
@@ -108,7 +120,7 @@ git add .
108120git commit -m " Initial commit from plugin template"
109121```
110122
111- ### 3 . Configure Git Identity
123+ ### 4 . Configure Git Identity
112124
113125Set up your Git identity for future commits:
114126
@@ -117,7 +129,7 @@ git config --global user.name "Your Name"
117129git config --global user.email " your.email@example.com"
118130```
119131
120- ### 4 . Open in IntelliJ IDEA
132+ ### 5 . Open in IntelliJ IDEA
121133
1221341 . Open IntelliJ IDEA
1231352 . Click "Open" and navigate to your ` MyFirstMod ` directory
0 commit comments