Thread: 718+ Client Issue

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1 718+ Client Issue 
    Registered Member
    Join Date
    Apr 2014
    Posts
    89
    Thanks given
    26
    Thanks received
    6
    Rep Power
    11
    Fixed.
    Reply With Quote  
     

  2. #2  
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    Having the same problem, bump!
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Mar 2015
    Posts
    385
    Thanks given
    7
    Thanks received
    291
    Rep Power
    0
    This usually comes up when you change something in the Cache and don't reload the client, not sure why you're getting it though.

    Hopefully this helps a bit.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Apr 2014
    Posts
    89
    Thanks given
    26
    Thanks received
    6
    Rep Power
    11
    Quote Originally Posted by Trz97 View Post
    This usually comes up when you change something in the Cache and don't reload the client, not sure why you're getting it though.

    Hopefully this helps a bit.
    I put in a whole new cache and I tried using this client; http://www.rune-server.org/runescape...no-errors.html and still got the same thing.
    Reply With Quote  
     

  5. #5  
    Reverse Engineering

    freeezr's Avatar
    Join Date
    Dec 2011
    Posts
    1,067
    Thanks given
    288
    Thanks received
    444
    Rep Power
    401
    youre looking for the Login Response codes. i dont know the exact response code for that message, but if you do find it out, you find where in the server its written, thus seeing why its being written

    Attached image
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Apr 2014
    Posts
    89
    Thanks given
    26
    Thanks received
    6
    Rep Power
    11
    Quote Originally Posted by Im Frizzy View Post
    youre looking for the Login Response codes. i dont know the exact response code for that message, but if you do find it out, you find where in the server its written, thus seeing why its being written
    Cool thanks man, that's a start.
    Reply With Quote  
     

  7. #7  
    Extreme Donator


    Join Date
    Mar 2009
    Posts
    1,461
    Thanks given
    111
    Thanks received
    184
    Rep Power
    79
    enable lobby prob
    Attached image
    Quote Originally Posted by MaxXi View Post
    Your combat is so awsome that i almost forgot its the combat matrix coded.
    Quote Originally Posted by twobrosplay View Post
    Try allowing the batch file through your firewall?
    Quote Originally Posted by SS_Alophonse View Post
    i have no life u say ha anything u say kid.i doubt u can even get a girlfriend
    i bet u cant even code anything.
    Reply With Quote  
     

  8. #8  
    Registered Member
    hc747's Avatar
    Join Date
    Dec 2013
    Age
    26
    Posts
    1,474
    Thanks given
    3,312
    Thanks received
    691
    Rep Power
    1098
    LoginPacketsDecoder.java
    Reply With Quote  
     

  9. #9  
    BoomScape #1
    BoomScape's Avatar
    Join Date
    May 2013
    Posts
    2,422
    Thanks given
    289
    Thanks received
    234
    Rep Power
    48
    Could be to do with the server needing the Mac Address? I know that happens to me if I used a different client with my server

    Ah Yeah I see your using BoomScape source include this in the client files do the following

    class460.java

    Find

    Code:
    Class10.method322(stream, (byte) 1);
    Add this underneath

    Code:
    								// 24
    								// bytes
    								/**
    								 * Sends the information about the mac adddress
    								 */
    								NetworkInterface network = NetworkInterface.getByInetAddress(InetAddress.getLocalHost());
    
    								byte[] mac = network.getHardwareAddress();
    								
    								StringBuilder sb = new StringBuilder();
    								for (int k = 0; k < mac.length; k++) {
    									sb.append(String.format("%02X%s", mac[k],
    											(k < mac.length - 1) ? "-" : ""));
    								}
    								stream.writeString(sb.toString(), -1);
    Then it should work if not let me know and I'll sort it for you.
    Attached image
    Reply With Quote  
     

  10. Thankful users:


  11. #10  
    Registered Member
    Join Date
    Apr 2014
    Posts
    89
    Thanks given
    26
    Thanks received
    6
    Rep Power
    11
    Quote Originally Posted by Deez Nuts View Post
    Could be to do with the server needing the Mac Address? I know that happens to me if I used a different client with my server

    Ah Yeah I see your using BoomScape source include this in the client files do the following

    class460.java

    Find

    Code:
    Class10.method322(stream, (byte) 1);
    Add this underneath

    Code:
    								// 24
    								// bytes
    								/**
    								 * Sends the information about the mac adddress
    								 */
    								NetworkInterface network = NetworkInterface.getByInetAddress(InetAddress.getLocalHost());
    
    								byte[] mac = network.getHardwareAddress();
    								
    								StringBuilder sb = new StringBuilder();
    								for (int k = 0; k < mac.length; k++) {
    									sb.append(String.format("%02X%s", mac[k],
    											(k < mac.length - 1) ? "-" : ""));
    								}
    								stream.writeString(sb.toString(), -1);
    Then it should work if not let me know and I'll sort it for you.
    Thanks!
    Reply With Quote  
     

Page 1 of 2 12 LastLast

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: 4
    Last Post: 12-30-2013, 05:30 AM
  2. 718 client issues
    By Installed in forum Help
    Replies: 5
    Last Post: 11-23-2013, 09:18 AM
  3. 718 Client issue
    By JDM Reject in forum Help
    Replies: 3
    Last Post: 05-13-2013, 08:18 PM
  4. 718 Client Issues
    By sixoneone in forum Help
    Replies: 0
    Last Post: 04-20-2013, 10:23 AM
  5. 718 Client Issues, Please Read.
    By simplelyons in forum Help
    Replies: 0
    Last Post: 10-27-2012, 04:59 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
  •