Thread: Help with Matrix 830 - error_game_js5connect

Results 1 to 4 of 4
  1. #1 Help with Matrix 830 - error_game_js5connect 
    Member
    Join Date
    Nov 2010
    Posts
    14
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Hello Everyone!

    I have been working on getting the Matrix RS3 830 Source hosted on a VPS and I got the server up and running.
    When I go to launch the client, it stays at 0% and gives me an error_game_js5connect error.
    I am guessing this has something to do with my client attempting to connect with the server.
    Im not sure where I would edit in the client files to include the new ip.

    I have looked through client.java, and I am not finding an IP or anything in there. I dont know what to do! Please help!
    Reply With Quote  
     

  2. #2  
    Just a Finn

    Join Date
    Jul 2015
    Posts
    121
    Thanks given
    17
    Thanks received
    4
    Rep Power
    13
    RS3Applet.java
    Reply With Quote  
     

  3. #3  
    Member
    Join Date
    Nov 2010
    Posts
    14
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    So I just actually figured this out.
    Is this correct?:
    Code:
    package game;
    
    import java.applet.Applet;
    import java.applet.AppletStub;
    import java.awt.Dimension;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.util.Properties;
    
    import javax.swing.JFrame;
    
    /**
     * An Applet used for loading the RS3 Client.
     * 
     * @author Im Frizzy <Skype:kfriz1998);
     */
    public class RS3Applet extends Applet implements AppletStub {
    
    	/**
    	 * An generated serial UID.
    	 */
    	private static final long serialVersionUID = 1670498001014004354L;
    
    	public static final boolean DEBUG = true;
    
    	public static final boolean USING_ISAAC = true;
    	/**
    	 * The parameters of the client.
    	 */
    	private Properties client_parameters = new Properties();
    
    	/**
    	 * The current frame of the client application.
    	 */
    	public JFrame clientFrame = null;
    
    	/**
    	 * 
    	 * Chooses the Host
    	 */
    	/**
    	 * Address of lobby server.
    	 */
    	public static boolean MODS = USING_ISAAC;
    
    	public static boolean HOSTED = true;
    
    	public static String LOBBY_ADDR = "67.227.153.61"; 67.227.153.61
    	/**
    	 * Address of lobby server.
    	 */
    	public static String WEB_STREAM_ADDR = "67.227.153.61";//"67.227.153.61";
    	/**
    	 * Chooses the Host
    	 */
    	public static String WORLD_HOST = !MODS ? "http://world58a.runescape.com" : "67.227.153.61";
    	public static final int MINOR_VERSION = 2;
    
    	/**
    	 * The main entry point of the current application.
    	 * 
    	 * @param args
    	 *            The command line arguments.
    	 */
    	public static void main(String... args) {
    		RS3Applet rs3applet = new RS3Applet();
    		rs3applet.doFrame();
    	}
    
    	/**
    	 * Performs the operations needed to show the client.
    	 */
    	private void doFrame() {
    		readParameters();
    		openFrame();
    		startClient();
    		clientFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    	}
    
    	@Override
    	public void init() {
    		readParameters();
    		startClient();
    	}
    
    	/**
    	 * Starts the actual client.
    	 */
    	private void startClient() {
    		try {
    			client RS3Client = new client();
    			RS3Client.supplyApplet(this);
    			RS3Client.init();
    			RS3Client.start();
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    	}
    
    	/**
    	 * Opens the actual frame application.
    	 */
    	private void openFrame() {
    		clientFrame = new JFrame("EliteScape");
    		clientFrame.add(this);
    		clientFrame.setVisible(true);
    		clientFrame.setSize(800, 600);
    	}
    
    	/**
    	 * Reads the parameters text file, and stores the parameters.
    	 */
    	private void readParameters() {
    		client_parameters.put("java_arguments", "-Xmx384m -Xss2m -Dsun.java2d.noddraw=true -XX:CompileThreshold=1500 -Xincgc -XX:+UseConcMarkSweepGC -XX:+UseParNewGC");
    		client_parameters.put("centerimage", "true");
    		client_parameters.put("image", "http://www.runescape.com/img/game/splash6.gif");
    		client_parameters.put("separate_jvm", "true");
    		client_parameters.put("boxborder", "false");
    		client_parameters.put("boxbgcolor", "black");
    		client_parameters.put("28", "C42C1E534C0AE9F5D937FDD53A2AB061EEC84D7787AD4E2825B3AFDF3A5A919C257A6ABCB0E2CB50715B5EDE3880BB8F");
    		client_parameters.put("18", "0irU8SxE4on1Tl9/y7sxdiPtbP2kt8WC");
    		client_parameters.put("4", "false");
    		client_parameters.put("25", "0");//Language
    		client_parameters.put("41", "false");
    		client_parameters.put("36", HOSTED ? "3" : "1");
    		client_parameters.put("39", HOSTED ? "3" : "1");
    		client_parameters.put("40", LOBBY_ADDR);
    		client_parameters.put("-1", "3fOGqwfW5MMZ8acLynrCzA");
    		client_parameters.put("24", "halign=true|valign=true|image=rs_logo.gif,0,-43|rotatingimage=rs3_loading_spinner.gif,0,47,9.6|progress=true,Verdana,13,0xFFFFFF,0,51");//"halign=true|valign=true|image=rs_logo.gif,0,-43|rotatingimage=rs3_loading_spinner.gif,0,47,9.6|progress=true,Verdana,13,0xFFFFFF,0,51");
    		client_parameters.put("23", "1237575166");
    		client_parameters.put("14", "0");
    		client_parameters.put("42", "CX_RS3");
    		client_parameters.put("27", HOSTED ? "3" : "1");
    		client_parameters.put("12", "false");
    		client_parameters.put("38", "0");
    		client_parameters.put("32", "true");
    		client_parameters.put("7", "");
    		client_parameters.put("21", ".runescape.com");
    		client_parameters.put("37", "http://services.runescape.com/m=gamelogspecs/clientstats?data=");
    		client_parameters.put("31", "false");
    		client_parameters.put("22", "true");
    		client_parameters.put("20", WEB_STREAM_ADDR);
    		client_parameters.put("3", "0");
    		client_parameters.put("34", WORLD_HOST);
    		client_parameters.put("5", "-1082895259");
    		client_parameters.put("1", "");//Display
    		client_parameters.put("30", "0");
    		client_parameters.put("26", "wwGlrZHF5gKN6D3mDdihco3oPeYN2KFybL9hUUFqOvk");
    		client_parameters.put("43", "1119795612");
    		client_parameters.put("29", "false");
    		client_parameters.put("2", "0");
    		client_parameters.put("35", "");
    		client_parameters.put("33", "225");
    		client_parameters.put("13", "1");
    		client_parameters.put("15", WORLD_HOST);
    		client_parameters.put("9", "");
    		client_parameters.put("11", "false");
    		client_parameters.put("16", "false");
    		client_parameters.put("0", "retUtMMUGOukXomtmWaUig");
    	}
    
    	/*
    	 * (non-Javadoc)
    	 * @see java.applet.AppletStub#appletResize(int, int)
    	 */
    	@Override
    	public void appletResize(int dimensionX, int dimensionY) {
    		super.resize(new Dimension(dimensionX, dimensionY));
    	}
    
    	/*
    	 * (non-Javadoc)
    	 * @see java.applet.Applet#getParameter(java.lang.String)
    	 */
    	@Override
    	public String getParameter(String paramName) {
    		return (String) client_parameters.get(paramName);
    	}
    
    	/*
    	 * (non-Javadoc)
    	 * @see java.applet.Applet#getDocumentBase()
    	 */
    	@Override
    	public URL getDocumentBase() {
    		try {
    			return new URL(WORLD_HOST);
    		} catch (MalformedURLException e) {
    			e.printStackTrace();
    		}
    		return null;
    	}
    
    	/*
    	 * (non-Javadoc)
    	 * @see java.applet.Applet#getCodeBase()
    	 */
    	@Override
    	public URL getCodeBase() {
    		try {
    			return new URL(WORLD_HOST);
    		} catch (MalformedURLException e) {
    			e.printStackTrace();
    		}
    		return null;
    	}
    }
    Additionally I am running this client on a mac, so I am using the terminal command to launch the client, is there a command I can do to compile the client source? Because I cannot seem to get it to compile
    Reply With Quote  
     

  4. #4  
    EXALTED

    Join Date
    Nov 2012
    Posts
    393
    Thanks given
    35
    Thanks received
    33
    Rep Power
    5
    Quote Originally Posted by gurgen View Post
    on a mac
    I think you have bigger problems than your client not launching
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. need help with matrix 830.
    By omegadavid in forum Help
    Replies: 3
    Last Post: 01-31-2016, 10:24 PM
  2. help with matrix?? can donate asap?
    By titanpure7 in forum Help
    Replies: 3
    Last Post: 04-16-2013, 04:03 PM
  3. Help with matrix ranks
    By Nimesh89 in forum Help
    Replies: 5
    Last Post: 03-25-2013, 06:48 PM
  4. help with matrix source loading?
    By hashlemon in forum Help
    Replies: 4
    Last Post: 03-24-2013, 09:15 PM
  5. help with matrixs music
    By Melon in forum Help
    Replies: 1
    Last Post: 03-10-2013, 06:19 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •