Extensible isometric game client and server developed in Kotlin with libGDX.
This repository is part of the Selene project.
- IntelliJ IDEA Community Edition or another IDE of your choice
- Open the project directory in IntelliJ IDEA
- Confirm the Gradle import if prompted
Normally, the launcher takes care of populating the client bundles. When launching the client from our IDE, it's up to us to set things up manually.
- Create a folder called
bundlesat the root of the project - Place any bundles you want to load into the
bundlesfolder
For example, to set up a Gobaith or VBU server, you could use the following bundles:
git clone https://github.com/SeleneWorlds/Moonlight-Inventory.git moonlight-inventory
git clone https://github.com/SeleneWorlds/Illarion-Gobaith-Scripts.git illarion-gobaith
git clone https://github.com/SeleneWorlds/Illarion-Gobaith-Map.git illarion-gobaith-map
git clone https://github.com/SeleneWorlds/Illarion-Gobaith-Data.git illarion-gobaith-data
git clone https://github.com/SeleneWorlds/Illarion-Gobaith-UI.git illarion-gobaith-ui
# or
git clone https://github.com/SeleneWorlds/Moonlight-Inventory.git moonlight-inventory
git clone https://github.com/SeleneWorlds/Illarion-Script-Loader.git illarion-script-loader
git clone https://github.com/SeleneWorlds/Illarion-API.git illarion-api
git clone https://github.com/SeleneWorlds/Illarion-VBU-Scripts.git illarion-vbu
git clone https://github.com/SeleneWorlds/Illarion-VBU-Map.git illarion-vbu-map
git clone https://github.com/SeleneWorlds/Illarion-VBU-Data.git illarion-vbu-data
git clone https://github.com/SeleneWorlds/Illarion-Gobaith-UI.git illarion-gobaith-uiNote: You will also need an illarion-gobaith-assets or illarion-vbu-assets bundle, which cannot be redistributed
due to licensing restrictions. We hope to provide an open source alternative in the future.
In the meantime, you'll need to build this bundle yourself. Feel free to ask for guidance within the community.
A run configuration for IntelliJ is included. The server's working directory is located at server/run.
The server expects a server.properties file in its working directory.
save_path=save
bundles_path=../../bundles
port=8147
bundles=illarion-gobaith,illarion-gobaith-data,illarion-gobaith-map
# or
# bundles=illarion-vbu,illarion-vbu-data,illarion-vbu-map,illarion-script-loaderExample run configurations for IntelliJ are included. The client's working directory is located at client/run.
The run configuration assumes you followed the example above. If you are using bundles that differ from the example, you will need to update the bundle mappings in the launch arguments of the run configuration.