Thread: Item Nulling + crashing client error

Results 1 to 10 of 10
  1. #1 Item Nulling + crashing client error 
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Code:
    NPC.DAT : 1489108188
    Called method225
    NPC.IDX : 1489126980
    Called method225
    Error: T1 - 123,0 - 36,36
    Exception in thread "Thread-6" java.lang.ArrayIndexOutOfBoundsException: -11
            at Model.method479(Model.java:1044)
            at ItemDef.method201(ItemDef.java:936)
            at ItemDef.getSprite(ItemDef.java:825)
            at client.drawInterface(client.java:8325)
            at client.drawTabArea(client.java:1900)
            at client.drawGameScreen(client.java:8120)
            at client.processDrawing(client.java:8868)
            at RSApplet.run(RSApplet.java:108)
            at client.run(client.java:4674)
            at java.lang.Thread.run(Thread.java:619)
    I got no idea what this is, but it crashes my client and alot of others.
    Reply With Quote  
     

  2. #2  
    Extreme Donator


    Join Date
    May 2010
    Posts
    1,344
    Thanks given
    961
    Thanks received
    132
    Rep Power
    216
    You added new model header ?
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    I did not touch anything of my modelheader at all.
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Jul 2008
    Posts
    3,532
    Thanks given
    188
    Thanks received
    696
    Rep Power
    0
    method479 is for shadowing i believe, post line 1044 of model.java
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Code:
    for(int i2 = 0; i2 < anInt1630; i2++) {
    			int j2 = anIntArray1631[i2];
    			int l2 = anIntArray1632[i2];
    			int i3 = anIntArray1633[i2];
    			int j3 = anIntArray1627[l2] - anIntArray1627[j2];
    			int k3 = anIntArray1628[l2] - anIntArray1628[j2];
    			int l3 = anIntArray1629[l2] - anIntArray1629[j2];
    			int i4 = anIntArray1627[i3] - anIntArray1627[j2];
    			int j4 = anIntArray1628[i3] - anIntArray1628[j2];
    			int k4 = anIntArray1629[i3] - anIntArray1629[j2];
    			int l4 = k3 * k4 - j4 * l3;
    			int i5 = l3 * i4 - k4 * j3;
    			int j5;
    Code 1044 being;

    Code:
    int j3 = anIntArray1627[l2] - anIntArray1627[j2];
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Bump.

    THis occurrs when people spawn noted barrows, wizard boots and other glitched items.
    Reply With Quote  
     

  7. #7  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Bump, really need help!
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Bump.
    Reply With Quote  
     

  9. #9  
    Banned

    Join Date
    Oct 2010
    Posts
    717
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    bump
    Reply With Quote  
     

  10. #10  
    arrowzftw
    Guest
    Above this :


    int j3 = anIntArray1627[l2] - anIntArray1627[j2];


    Add:

    if(l2 > -1 && j2 > -1)
    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. [PI] Fixing Item Nulling
    By Dexter Morgan in forum Snippets
    Replies: 4
    Last Post: 02-11-2011, 11:10 PM
  2. Server Nulling Error
    By TORONTO in forum Help
    Replies: 2
    Last Post: 03-29-2010, 08:40 PM
  3. Client Crashing Error
    By Skype in forum Help
    Replies: 10
    Last Post: 11-24-2009, 02:34 AM
  4. Error Client Crashing
    By Skype in forum Help
    Replies: 8
    Last Post: 11-24-2009, 02:21 AM
  5. Fixing nulling using edited item cache
    By Vegeta in forum Snippets
    Replies: 2
    Last Post: 07-30-2009, 11:44 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
  •