forked from 2009Scape/Server
Add artifacts & metas
This commit is contained in:
parent
cd54b1533e
commit
7ea58f6805
31 changed files with 64 additions and 22 deletions
|
|
@ -1,5 +1,7 @@
|
|||
package org.runite;
|
||||
|
||||
import org.crandor.game.node.entity.player.link.ConfigurationManager;
|
||||
import org.crandor.net.packet.out.Config;
|
||||
import org.runite.jagex.GameShell;
|
||||
|
||||
/**
|
||||
|
|
@ -18,13 +20,20 @@ public class Client {
|
|||
/**
|
||||
* The game settings.
|
||||
*/
|
||||
public static GameSetting SETTINGS = new GameSetting("2009Scape", "34.74.91.45", 1, "live", false, false);
|
||||
public static GameSetting SETTINGS = new GameSetting("2009Scape", "34.68.75.237", 1, "live", false, false);
|
||||
|
||||
/**
|
||||
* The main method.
|
||||
* @param args the arguments casted on runtime.
|
||||
r @param args the arguments casted on runtime.
|
||||
r_game
|
||||
|
||||
*/
|
||||
public static void main(String[]args) {
|
||||
System.out.println("Running liveserver client");
|
||||
Configurations.LOCAL_SERVER = false;
|
||||
Configurations.LOCAL_MS = false;
|
||||
Configurations.MS_IP = Configurations.LOCAL_MS ? "127.0.0.1" : "34.68.75.237"; //Needs to be done because of order it's otherwise set
|
||||
|
||||
for (int i = 0; i < args.length; i++) {
|
||||
String[] cmd = args[i].split("=");
|
||||
switch (cmd[0]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue