Download Odyssey Legend

Always pulls the newest build straight from the game server.

Checking the server for the latest version...

Installing

  1. Click the download button above to get the installer (.exe).
  2. Run the installer. If Windows SmartScreen warns about an unrecognized app, choose More info → Run anyway -- this is expected for a small, independently-published game.
  3. Launch Odyssey Legend from your Start Menu or desktop shortcut.
  4. Create an account (or log in) and start playing.

System requirements: Windows 10/11 (64-bit). No separate Java install needed -- the installer bundles everything it needs to run.

Already playing? The client checks for updates automatically every time it starts, so you don't need to come back here for future versions.

Linux

There's no installer for Linux yet -- run the plain client jar instead. Requires Java 21 or newer.

Don't have Java 21? No root/admin access needed -- this installs a self-contained copy into your own home directory:

mkdir -p ~/java && cd ~/java
curl -L -o jdk21.tar.gz "https://api.adoptium.net/v3/binary/latest/21/ga/linux/x64/jdk/hotspot/normal/eclipse?project=jdk"
tar xzf jdk21.tar.gz
JDIR=$(find ~/java -maxdepth 1 -type d -name "jdk-21*")
ln -sfn "$JDIR" ~/java/current
echo 'export JAVA_HOME=$HOME/java/current' >> ~/.bashrc
echo 'export PATH=$JAVA_HOME/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
java -version

If your machine is ARM-based (check with uname -m -- aarch64/arm64 means ARM) instead of the usual x86_64, swap linux/x64 for linux/aarch64 in the curl URL above.

Once Java 21 is installed:

mkdir odyssey && cd odyssey
curl -O 
curl -O 
java -jar OdysseyClient.jar

Unlike the Windows installer, this jar doesn't check for updates on its own yet -- check back here and re-run the commands above to grab a newer build.