Flub 1,272 Posted October 6, 2021 Report Share Posted October 6, 2021 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 Link to comment Share on other sites More sharing options...
dangercroc 0 Posted October 10, 2021 Report Share Posted October 10, 2021 very nice Link to comment Share on other sites More sharing options...
shadowisdom 1 Posted February 6, 2022 Report Share Posted February 6, 2022 thanks for this Link to comment Share on other sites More sharing options...
Ary3x 0 Posted February 14, 2022 Report Share Posted February 14, 2022 awesome will be using thanks Link to comment Share on other sites More sharing options...
Boydie96 5 Posted March 1, 2022 Report Share Posted March 1, 2022 Does this have any negatives? Link to comment Share on other sites More sharing options...
Snooperal 0 Posted April 17, 2022 Report Share Posted April 17, 2022 is this engine capable of 100 packets per tick like osrs? or would you recommend 35-40 as the limit Link to comment Share on other sites More sharing options...
Clockedstr8 4 Posted April 19, 2022 Report Share Posted April 19, 2022 I wonder what the original reason was for this. Just running on a shit server and minimizing the amount of packets per player? Link to comment Share on other sites More sharing options...
Kirsten 0 Posted May 28, 2022 Report Share Posted May 28, 2022 thankyou for this Link to comment Share on other sites More sharing options...
0117be 66 Posted June 2, 2022 Report Share Posted June 2, 2022 Most have this now Link to comment Share on other sites More sharing options...
onetake 0 Posted October 13, 2022 Report Share Posted October 13, 2022 very nice! Link to comment Share on other sites More sharing options...
nsin25 0 Posted February 7, 2023 Report Share Posted February 7, 2023 Simple change, big difference! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now