Thread: Client region height updating bug

Results 1 to 3 of 3
  1. #1 Client region height updating bug 
    Banned

    Join Date
    Jul 2015
    Posts
    607
    Thanks given
    520
    Thanks received
    660
    Rep Power
    0
    Seen so many help threads about this yet I haven't found a fix released. Even though this is already in the latest clients released (at least Ruse client), I think that it might be wise to release it separately. I'm currently working on my new client and it didn't have this fix added.

    This fixes the issue with changing heights without loading the new region. Basically fixes Agility courses, Slayer tower and more places where the height is changed but local region coords remain the same.
    http://www.rune-server.org/runescape...ating-bug.html

    Before the fix:
    Attached image

    After the fix:
    Attached image

    Simply find this in Client.java (it's in the updatePlayerMovement method):
    Code:
    	if (k == 3) {
    			plane = stream.getBits(2);
    And replace it with this:

    Code:
    		if (k == 3) {
    			plane = stream.readBits(2);
    			if(lastPlane != plane) 
    				loadingStage = 1;
    			lastPlane = plane;
    Region should now properly reload when the plane is suddenly changed.
    Reply With Quote  
     

  2. #2  
    Extreme Donator Client region height updating bug Market Banned



    Join Date
    Aug 2011
    Age
    28
    Posts
    3,589
    Thanks given
    1,402
    Thanks received
    1,620
    Rep Power
    5000
    Thanks for this lad

    Attached image

    Attached image
    Discord: Roy#2382

    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Jul 2015
    Posts
    607
    Thanks given
    520
    Thanks received
    660
    Rep Power
    0
    Quote Originally Posted by Arrow_ View Post
    Thanks for this lad
    No problem, just trying to help
    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] Strange region updating bug
    By EmperorLood in forum Help
    Replies: 7
    Last Post: 02-04-2016, 07:10 PM
  2. Hyperion region/player updating bug
    By Shadowy in forum Help
    Replies: 11
    Last Post: 11-09-2014, 04:21 PM
  3. Replies: 0
    Last Post: 10-19-2013, 01:59 PM
  4. Object height update bug...
    By mige5 in forum Help
    Replies: 21
    Last Post: 08-03-2013, 12:19 AM
  5. Eleclion's Client-2-JAR [Updated Re-Release]
    By Eleclion in forum Downloads
    Replies: 13
    Last Post: 01-31-2009, 10:32 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
  •