Thread: Solved

Results 1 to 2 of 2
  1. #1 Solved 
    Registered Member Dunhel's Avatar
    Join Date
    Apr 2011
    Posts
    209
    Thanks given
    16
    Thanks received
    5
    Rep Power
    10
    Close this thread
    Reply With Quote  
     

  2. #2  
    Registered Member Nouish's Avatar
    Join Date
    Jun 2011
    Posts
    822
    Thanks given
    142
    Thanks received
    177
    Rep Power
    282
    Quote Originally Posted by Dunhel View Post
    T1 - 123,0 - 36,36 fix



    Disabling this enables the cheat client?

    Code:
    // used for crashing cheat clients
    Is there a real fix for this? People say that head icons are invisible or something
    It crashes cheat clients because the packet is unknown. The head icons may be invisible because the non-edited client had two bytes for head icons, but some fancy clients requires three.

    The "better" fix would be:

    Find this in the client.java (client-side):
    Code:
    signlink.reporterror("T1 - " + pktType + "," + pktSize + " - " + anInt842 + "," + anInt843);
    Above it, add this along with the many other cases in the switch statement:

    Code:
    case 123:
    	System.out.println("Received crash frame.");
    	pktType = -1; // Otherwise it will loop this pktType.
    	return true;
    Reply With Quote  
     

  3. Thankful user:



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: 2
    Last Post: 11-14-2011, 03:05 AM
  2. Z508 - Packet 199, Packet Size.
    By Dexter Morgan in forum Help
    Replies: 4
    Last Post: 12-22-2009, 02:37 PM
  3. HELP - Unknown
    By JavaBoy in forum General
    Replies: 2
    Last Post: 06-22-2008, 09:18 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
  •