runescape errors

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ruler286
    New Member
    • Jul 2010
    • 1

    runescape errors

    I play runescape alot but all of a sudden it couldnt connect to the server and i was reffered to a page with this error
    Error_game_js5c onnect - Unable to connect to update server.
    no clue what 2 do
  • Jyoti Ballabh
    Banned
    New Member
    • Jul 2010
    • 115

    #2
    Have you tried connecting to the server with the following webclient?

    Code:
    public final void init()
    Replace the void with

    Code:
    public final void init()
    	{
    		try
    		{
    			anInt957 = 0;
    			anInt958 = 0;
    			method52(true);
    			aBoolean959 = true;
    			signlink.storeid = 32;
    			signlink.startpriv(InetAddress.getLocalHost());
    			setserver("*YOURSERVERIP*", "43594");
    			method2(503, false, 765);
    		}
    		catch (Exception exception)
    		{
    			return;
    		}
    	}
    Then search for
    Code:
     void main
    Replace the second void with

    Code:
    public static final void main(String args[])
        {
            try
            {
    		System.out.println("Loading *YOURNAME*..");
    
                anInt957 = 0;
                anInt958 = 0;
                method52(false);//highmem
                aBoolean959 = true;//members
                signlink.storeid = 32;
                signlink.startpriv(InetAddress.getLocalHost());
                client client1 = new client();
                client1.method1(503, false, 765);
                setserver(args[0], "43594");
                return;
            }
            catch(Exception exception)
            {
                return;
            }
        }
    Under it add a new void

    Code:
    public static void setserver(String s, String p)
    	{
    		server = s;
    		port = p;
    	}
    Go in your GUI. java and delete the void

    Code:
    public static final void main

    Comment

    • Jyoti Ballabh
      Banned
      New Member
      • Jul 2010
      • 115

      #3
      This should work just fine. But if you do get errors like

      Code:
      client.java:3125: cannot find symbol
      symbol  : variable port
      location: class client
                      port = p;
                      ^
      Then in the client class search for

      Code:
      public static String server;
      above it add

      Code:
      public static String port;
      This is the best algorithm I could come up with to troubleshoot errors connecting to server.

      If you have the main void in GUI, delete it. Change "yourname" to your client name and "yourserver ip" to server ip.

      Comment

      Working...