Jump to content

Featured Replies

Posted
comment_63128

I always forget about this tip.

In Client.java, search for:

for (int j = 0; j < 5; j++) {
			if (!parsePacket()) {
				break;
			}
		}

Change the 5 to around 35-40.

for (int j = 0; j < 35; j++) {
			if (!parsePacket()) {
				break;
			}
		}

Try to login / open an interface before and after - It's a huge difference!

Essentially the client was limited to just 5 packets per tick, now it's 35 :) 

  • 3 months later...
  • 2 weeks later...
  • 2 weeks later...
  • 1 month later...
  • 1 month later...
  • 4 months later...
  • 3 months later...

Create an account or sign in to comment