Thread: Error unpacking interfaces..

Results 1 to 7 of 7
  1. #1 Error unpacking interfaces.. 
    Member

    Join Date
    Aug 2009
    Age
    28
    Posts
    513
    Thanks given
    8
    Thanks received
    2
    Rep Power
    0
    How come whenever I try to do this tutorial: http://www.rune-server.org/showthread.php?t=169251

    I get this error !





    My client loads perfectly until it get's to unpacking interfaces. When it get's there, the picture above is what happens. What am I doing wrong?! Why am I getting unpacking errors?! Please help :/
    Reply With Quote  
     

  2. #2  
    Donator


    Join Date
    Feb 2009
    Age
    30
    Posts
    2,128
    Thanks given
    261
    Thanks received
    280
    Rep Power
    563
    same lol
    Reply With Quote  
     

  3. #3  
    Member Error unpacking interfaces.. Market Banned

    Zee Best's Avatar
    Join Date
    Feb 2007
    Age
    32
    Posts
    3,036
    Thanks given
    24
    Thanks received
    210
    Rep Power
    1171
    Catch the error in client.java where it loads the interfaces then look at the stack trace.


    Reply With Quote  
     

  4. #4  
    Member

    Join Date
    Aug 2009
    Age
    28
    Posts
    513
    Thanks given
    8
    Thanks received
    2
    Rep Power
    0
    What do you mean by "catching the error"?
    Reply With Quote  
     

  5. #5  
    Jeremy Yak
    Guest
    Quote Originally Posted by buck View Post
    What do you mean by "catching the error"?
    Inside your client loader method (method6 for non-renamed), add this to the very top, right after the first {
    try {
    Then goto the very end of the method, and right before the final } add this
    } catch (Exception e) {
    e.printStackTrace();
    }
    Then recompile your client and try to start it again. This time, you should received a detailed outline of the error, including the lines numbers that are causing it. If you could post the stack trace here, I'm sure you could get help faster.
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    Mar 2009
    Posts
    1,012
    Thanks given
    70
    Thanks received
    178
    Rep Power
    0
    or just do an easy fix, your class9 only loads up to 20000 for interfaces(I would suppose) so, just find this line,

    Code:
    aClass9Array210 = new Class9[
    and in the [ ] change the number to 30000 should work.
    Reply With Quote  
     

  7. #7  
    Member

    Join Date
    Aug 2009
    Age
    28
    Posts
    513
    Thanks given
    8
    Thanks received
    2
    Rep Power
    0
    Quote Originally Posted by I T He I View Post
    or just do an easy fix, your class9 only loads up to 20000 for interfaces(I would suppose) so, just find this line,

    Code:
    aClass9Array210 = new Class9[
    and in the [ ] change the number to 30000 should work.
    I love you! it worked !
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •