A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
1@echo off
2REM High Level Alchemy client launcher — Windows. Double-click to run.
3setlocal
4cd /d "%~dp0"
5
6where java >nul 2>nul
7if errorlevel 1 (
8 echo Java isn't installed. Install Java 21+ from https://adoptium.net and try again.
9 pause
10 exit /b 1
11)
12if not exist "hla-client.jar" (
13 echo hla-client.jar not found next to this script.
14 pause
15 exit /b 1
16)
17
18java -jar hla-client.jar %*
19pause