- Jan 14, 2024
- 313
- 308
Managed to run this on linux. Using wine or proton was a bust (proton almost worked though, it just didn't render the text) so using native java was the remaining approach.
The game was made on JDK 8 (jdk1.8.0_172).
You need a java setup that supports both JavaFX and Nashorn.
JavaFX is available as openjfx, nashorn is only available in jdk/jre 14 and older, so the game cannot be run on the latest jdk versions. Jdk8 and Jdk11 are the most accessible versions the game could be run on though jdk14 is the highest possible one.
The simplest solution for me ended up being
I then executed the game by using the java binary that came with that build to run the game, e.g.
But an alternative way to do it would have been to install jdk 11 (or 14), and then installing openjfx separately, then running with this command:
In my exact case it would've been this command
So as you can see the zulu build made things quite simpler.
It's not perfect though because it'll still throw
But it's completely playable, even if it's not entirely smooth. It plays considerably better on X than Wayland for me.
The game was made on JDK 8 (jdk1.8.0_172).
You need a java setup that supports both JavaFX and Nashorn.
JavaFX is available as openjfx, nashorn is only available in jdk/jre 14 and older, so the game cannot be run on the latest jdk versions. Jdk8 and Jdk11 are the most accessible versions the game could be run on though jdk14 is the highest possible one.
The simplest solution for me ended up being
You must be registered to see the links
. There are also comparable liberica builds.I then executed the game by using the java binary that came with that build to run the game, e.g.
Code:
/usr/lib/jvm/zulu11-fx-bin/bin/java -jar LilithsThrone_0_4_10_7.jar
Code:
/path/to/jdk11/bin/java --module-path /path to javafx/lib --add-modules javafx.controls,javafx.fxml -jar LilithsThrone_0_4_10_7.jar
Code:
/usr/lib/jvm/java-11-openjdk/bin/java --module-path /usr/lib/jvm/java-11-openjfx/lib --add-modules javafx.controls,javafx.fxml -jar LilithsThrone_0_4_10_7.jar
It's not perfect though because it'll still throw
You must be registered to see the links
.But it's completely playable, even if it's not entirely smooth. It plays considerably better on X than Wayland for me.
Last edited: