General > Tech Support

How to play RuneRebels on Linux

(1/1)

Pyro:
Step 1: Make sure you have a JRE installed
Step 1.1: If you're awesome and you use Arch Linux, the open-jdk JRE seems to get the job done (install it via Pacman)
Edit: It seems that the OpenJDK has a weird bug; right clicks are registered as left clicks. I've ditched OpenJDK for Oracle, and everything seems to be working fine.

Step 2: Download the client here: https://www.runerebels.com/smf/index.php?board=134.0
Step 3: Unzip the file
Step 4: View the contents of "RuneRebels/Run.bat", here's what it looked like to me on 2018-11-17:


--- Code: ---title RuneRebels
java -Xmx256M -jar .\jar\loader.jar -configurl http://www.runerebels.com/resources/config.agf
pause

--- End code ---

All you care about is the command that invokes Java. Let's make a bash script that runs the command:


--- Code: ---#!/usr/bin/env bash

java -Xmx256M -jar ~/path/to/jar/loader.jar -configurl http://www.runerebels.com/resources/config.agf

--- End code ---

Note you'll want to replace "~/path/to/jar/loader.jar" with the actual path relative to the bash script.

Once that's done, chmod your bash script and run it:


--- Code: ---sudo chmod +x runerebels.sh
./runerebels.sh

--- End code ---

Gornu:
+1 to sticky on Tech Support merge on How To...


Stuart:

--- Quote from: Gornu on November 20, 2018, 09:58:12 am ---+1 to sticky on Tech Support merge on How To...




--- End quote ---
I plus two so I moved it and stickied it. Only thing is I think I will leave it as a separate topic so that it gets a bit more attention in case people have a hard time searching.

Navigation

[0] Message Index

Go to full version