Thread: Help Running the Client

Results 1 to 4 of 4
  1. #1 Help Running the Client 
    Registered Member
    Join Date
    Feb 2018
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    When I try to run the client

    I get:


    java.io.FileNotFoundException: https://dl.dropboxusercontent.com/u/...06-Memorys.zip
    at sun.net.http://www.protocol.http.HttpURLConn...ion.java:1898)
    at sun.net.http://www.protocol.http.HttpURLConn...ion.java:1500)
    at sun.net.http://www.protocol.https.HttpsURLCo...Impl.java:268)
    at CacheDownloader.downloadFile(CacheDownloader.java: 109)
    at CacheDownloader.downloadCache(CacheDownloader.java :79)
    at client.startUp(client.java:6874)
    at RSApplet.run(RSApplet.java:44)
    at client.run(client.java:4342)
    at java.lang.Thread.run(Thread.java:750)
    Press any key to continue . . .



    If I replace the cache with one from another client I get this error:


    Error:loaderror Connecting to update server 60 urlstream
    Reply With Quote  
     

  2. #2  
    Chemist

    Advocatus's Avatar
    Join Date
    Dec 2009
    Posts
    2,622
    Thanks given
    201
    Thanks received
    813
    Rep Power
    1462
    It is trying to download the file 2006-Memorys.zip from the URL https://dl.dropboxusercontent.com/u/...06-Memorys.zip

    That URL is no longer valid. That is why you are having the error.

    at client.startUp(client.java:6874)


    Line 6874 is the one calling to start the cache download process. If you comment that out, that should prevent it from trying to downloading the cache from the url.
    Quote Originally Posted by blakeman8192 View Post
    Quitting is the only true failure.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Feb 2018
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    So I'm a little unfamiliar with editing class files, if that's what I'm supposed to do. I downloaded a program called dirtyJOE removed the internet link from cashedownloader class and now it's saying.

    error retrieving archivaed name.
    Reply With Quote  
     

  4. #4  
    Retired From RSPS

    iGarrett's Avatar
    Join Date
    Dec 2013
    Posts
    461
    Thanks given
    144
    Thanks received
    110
    Rep Power
    187
    Okay; So you can download Visual Studio Code or Eclipse/Netbeans etc etc..

    In your CacheDownloader.java
    The URL String points to where the client will ATTEMPT to download the cache from the internet.
    - java.io.FileNotFoundException means that the requested file can not be located on the webserver.

    You need to either upload your cache to another file-server and post the *.zip URL into the cache downloader or you can put the cache in your "USERS" Folder.

    - If I replace the cache with one from another client I get this error
    --- You can not swap CACHE from other client bases unless they are derived from the same base and are the same revision/crc/version/size etc etc.

    I will tell you how to set it up without using the cache downloader.

    Go into your Client.java Class and look for..
    Code:
     new CacheDownloader.DownloadCache;
    This is usually located in your Void Startup () { method and may be named different.

    Either remove the line or put two "//" infront of it to "comment" the line out.

    Now go into your Signlink.java class and search for method findCacheDir() {

    You should see something like this;
    Code:
     public static String findcachedir()
        {
            boolean exists = (new File(System.getProperty("user.home") + "/YOUR CACHE/")).exists();
            if (exists) {
                //System.out.println("Directory exists");
                return System.getProperty("user.home") + "/YOUR CACHE/";
            } else {
                File f = new File(System.getProperty("user.home") + "/YOUR CACHE/");
                f.mkdir();
                System.out.println("Directory doesnt exist, making directory");
                return System.getProperty("user.home") + "/YOUR CACHE/";
            }
        }
    Place your cache in the path directory where it states inside the method.
    Run your client and you should be able to load up without issues.

    I'm avaliable after 5pm EST in you need further help via Discord Screen Share.
    Quote Originally Posted by i am here View Post
    I have never messed with Eclipse. Is it a whole new revision or type of code?
    Quote Originally Posted by bibl View Post
    hahaha, good one m9. "deob" is short for "deobfuscated" which is not the same as decompiled.
    I'm GEEGIN' OUT
    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. Replies: 9
    Last Post: 04-25-2013, 12:34 PM
  2. [PI]Help making/running the client
    By sdaehrevo in forum Help
    Replies: 1
    Last Post: 11-03-2012, 12:24 AM
  3. Hiding the CMD while you run the client.
    By p00n3z in forum Snippets
    Replies: 12
    Last Post: 08-28-2009, 08:04 PM
  4. help, running a client
    By Robin Spud in forum Help
    Replies: 1
    Last Post: 03-26-2009, 12:46 AM
  5. Error on running the client
    By Rugrats in forum RuneScape Underground
    Replies: 3
    Last Post: 02-28-2009, 01:01 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •