Perhaps you downloaded the Android (apk) version?I have a quick question, i cant seem to find the exe file or the jar file. I made sure to download the latest java maybe i download the wrong file or java. but i cant figure out how to start the game. Any help would be much appreciated
I downloaded the window one. from f95 and it doesn't have an .exe from what Dexter1927 pmed so im gonna try andPerhaps you downloaded the Android (apk) version?
Download the game from the OP. Extract it. It should look like this:
View attachment 489777
You can replace just the .jar for each update. Just run the .exe to play the game.
To decompile/recompile you can use Winrar. Just open the .Jar file in Winrar and extract the content where you want it. To recompile just make it into a .rar file and modify the extension from .rar to .jarDude I need to know what did you use to decompile/recompile, or did you just edit the bytecode?
By compiling/decompiling i mean getting .class files from .java files and vice verse. I assume you can make small edits to .class files but i've never tried.To decompile/recompile you can use Winrar. Just open the .Jar file in Winrar and extract the content where you want it. To recompile just make it into a .rar file and modify the extension from .rar to .jar
There are 2 ways:Dude I need to know what did you use to decompile/recompile, or did you just edit the bytecode?
Most if not most dialogues are in the /script/encounters.json, a plain-text JSON file.Exceptional social commentary...
Ah, and one more thing. Does anyone know how to "perform" translations for this game? I mean how to change dialogue lines/interface/prompts and all that jazz?
Oh, then you want something like Eclipse or JD-GUI.By compiling/decompiling i mean getting .class files from .java files and vice verse. I assume you can make small edits to .class files but i've never tried.
Idk how i never thought about that. I tried to reconstruct the whole project but i was getting unknown errors related to a myriad of things and gave up after a whileThere are 2 ways:
1. Like you said, edit the bytecode by hand
2. You can, using something like Eclipse, add the JAR as a Dependency, add a new class to your "Project" with the same name etc., use a decompiler to get the actual code and "compile" your changes to get the .class files, which you just inject into the JAR afterwards.
That Process can be pretty tedious and pretty much only works with applications that are not obfuscated. There are still some small things to it, like that you have to use the same target framework and stuff like that, but the JVM kindly reminds you of that if you make any mistakes. Feel free to send me a PM if you have any questions