Play game
Heroes Journey's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Enjoyment | #20 | 1.155 | 2.000 |
Graphics | #20 | 0.577 | 1.000 |
Audio | #20 | 0.577 | 1.000 |
Technically Sound | #20 | 0.577 | 1.000 |
Innovation | #20 | 0.577 | 1.000 |
Theme | #20 | 0.866 | 1.500 |
Overall | #20 | 0.722 | 1.250 |
Ranked from 2 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
Leave a comment
Log in with itch.io to leave a comment.
Comments
FOR THE PLAYERS
To run the game, first make sure you have Java installed. After unzipping the file, open your favorite command line tool and navigate to the spaceus-main/spaceus-main/sprite final backup. Run the following command: javac entity/*.java main/*.java tile/*.java
Then run java main/launcher
And a window should open up with the game.
FOR THE DEVS
.java files are not executable, they're just lines of text that need to be parsed by a compiler and turned into executable files. Next time it would be a good idea to look up how to build executable files for Java projects :)
On another note, I find it impressive that you managed to do your first game jam with no game engine whatsoever. There are quite a few problems, for example the collisions don't match with the actual map, and the window is larger than my screen, but that is to be expected for a first jam. Keep it up!
Thanks so much Jordan. Really appreciate your comment!
Running launcher.java gives me this error:
Exception in thread "main" java.lang.NullPointerException: Cannot invoke "java.net.URL.toExternalForm()" because "location" is null
at java.desktop/javax.swing.ImageIcon.<init>(ImageIcon.java:232)
at main.launcher$1.<init>(launcher.java:24)
at main.launcher.main(launcher.java:22)