No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2023-10-21 18:23:03 -04:00
data Updating logo resource path and retrieval + publishing new prebuilt jar 2021-05-13 14:29:29 -05:00
gradle/wrapper git ignore screwed us 2020-07-07 14:31:14 +02:00
META-INF Big package renaming time 2021-05-13 11:33:13 -05:00
prebuilt new file: prebuilt/0xRS.jar 2023-10-21 18:08:22 -04:00
src/main Update Configuration.java 2023-10-21 18:23:03 -04:00
.gitignore Merge branch 'master' into resizable-fixes 2022-05-26 00:44:20 +02:00
build.gradle refactor: split Game and GameShell apart, move main(..) to GameShell 2023-07-12 00:16:41 +01:00
gradlew add gradle wrapper 2020-07-07 14:20:49 +02:00
gradlew.bat add gradle wrapper 2020-07-07 14:20:49 +02:00
README.md Update README.md 2023-10-21 18:13:18 -04:00
settings.gradle Whitelabel update 2021-04-20 15:18:48 -05:00

RuneJS Java Client #435

A RuneScape game client from October 2006 which has been modified to work with RuneJS, a RuneScape game server written in NodeJS and TypeScript. This client is not for OldSchool RuneScape - client #435 pre-dates the very first OSRS client by quite some time.

We've no interest in OSRS client hacking, this client exists as a means to develop on RuneJS game servers and will not work with other server emulators.

Usage

Running the client can be done either with the pre-built client JAR file or by building the Java code and running it manually in an IDE.

Pre-Built Client

Running the pre-built client requires having Java installed: https://www.java.com/en/

Once installed, Download the jar from Releases and simply double-click the JAR file to run it. Alternatively if executing the JAR does not work, use the command java -jar 0xRS.jar .

Gradle

Gradle provides a wrapper script which downloads the build system to a local cache. This allows you to run the client without the help of an IDE such as IntelliJ. Gradle is also configured to automatically download dependencies.

The following examples use the unix executable ./gradlew, however Windows can replace these with ./gradlew.bat.

Running via Gradle

The application gradle plugin provides the run task, which starts up the Main client class. With this option, arguments can be provided via --args.

./gradlew run

Building a Jar

The jar task can be used to build a jar, which is generated in the build/libs directory.

./gradlew jar
java -jar ./build/libs/client-435-0.3.jar