Thread: Fixing handcuffs in makeover mage

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Fixing handcuffs in makeover mage 
    Registered Member
    Join Date
    Jan 2017
    Posts
    195
    Thanks given
    13
    Thanks received
    27
    Rep Power
    13
    what youre adding: Attached image


    for some reason when youre on the makeover screen it doesn't let you change hands option from handcuffs to no handcuffs

    well the issue is with the IDK

    more specifically the issue is that the 'original color' is incorrect so its never actually recoloring the cuffs to skin color (which gives it the appearance of no handcuffs)

    had to open it up in metasequioa to find the correct color: Attached image

    IDK.java

    after

    Code:
    		for (int j = 0; j < length; j++) {
    			if (cache[j] == null)
    				cache[j] = new IDK();
    			cache[j].readValues(stream);
    			cache[j].anIntArray659[0] = 55232;
    			cache[j].anIntArray660[0] = 6798;
    		}

    add this:

    Code:
    		//male hands
    		cache[34] = new IDK();
    		cache[34].anInt657= 4;
    		cache[34].anIntArray658 = new int[] {176};
    		cache[34].anIntArray659[0] = 43072;
    		cache[34].anIntArray660[0] = 4550;
    		//female hands
    		cache[67] = new IDK();
    		cache[67].anInt657= 4;
    		cache[67].anIntArray658 = new int[] {353};
    		cache[67].anIntArray659[0] = 43072;
    		cache[67].anIntArray660[0] = 4550;
    Reply With Quote  
     

  2. #2  
    Registered Member
    rebecca's Avatar
    Join Date
    Aug 2017
    Posts
    1,071
    Thanks given
    862
    Thanks received
    915
    Rep Power
    5000
    this is not a bug in the runescape client you've fixed, this is hardcode for something you've fucked up in your client
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Jan 2017
    Posts
    195
    Thanks given
    13
    Thanks received
    27
    Rep Power
    13
    Quote Originally Posted by rebecca View Post
    this is not a bug in the runescape client you've fixed, this is hardcode for something you've fucked up in your client

    how would you even "fuck up your client" to OVERRIDE this specific idk #?

    here is the specific value of this IDK from #180 which is what this client is loading right now

    Code:
    case 34:
    	IdkbodyPartId = 4;
    	IdkmodelIds = new int[] {176};
    	IdkrecolorToFind = new short[] {-22464};
    	IdkrecolorToReplace = new short[] {4550};
    break;

    but it doesn't work because that IdkrecolorToFind isnt 22464 but actually 43072 and this fixes it


    edit: I just updated the IDK from here https://www.rune-server.ee/runescape...ump-198-a.html to test and same issue
    Reply With Quote  
     

  4. #4  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    You should edit the cache instead of doing it this way.
    Attached image
    Attached image
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Jan 2017
    Posts
    195
    Thanks given
    13
    Thanks received
    27
    Rep Power
    13
    Quote Originally Posted by _jordan View Post
    You should edit the cache instead of doing it this way.
    with what tool to open idk.dat ?
    Reply With Quote  
     

  6. #6  
    Registered Member
    rebecca's Avatar
    Join Date
    Aug 2017
    Posts
    1,071
    Thanks given
    862
    Thanks received
    915
    Rep Power
    5000
    Quote Originally Posted by socklol View Post
    with what tool to open idk.dat ?
    u write it
    Reply With Quote  
     

  7. #7  
    🖤RuneScape Veteran(2004)🖤 0117be's Avatar
    Join Date
    Jan 2012
    Posts
    136
    Thanks given
    1
    Thanks received
    18
    Rep Power
    1
    Still bugged for female cuff model, any fix? ethos base
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Dec 2011
    Posts
    263
    Thanks given
    73
    Thanks received
    44
    Rep Power
    24
    Quote Originally Posted by rebecca View Post
    u write it
    this dude is right, it makes a lot more sense to write a whole tool from scratch to make this minor edit to the cache rather than hard coding a few values
    Reply With Quote  
     

  9. #9  
    Registered Member
    rebecca's Avatar
    Join Date
    Aug 2017
    Posts
    1,071
    Thanks given
    862
    Thanks received
    915
    Rep Power
    5000
    Quote Originally Posted by Lurk View Post
    this dude is right, it makes a lot more sense to write a whole tool from scratch to make this minor edit to the cache rather than hard coding a few values
    on god
    Reply With Quote  
     

  10. #10  
    Registered Member
    Join Date
    Dec 2011
    Posts
    263
    Thanks given
    73
    Thanks received
    44
    Rep Power
    24
    Quote Originally Posted by rebecca View Post
    on god
    on my mama
    Reply With Quote  
     

Page 1 of 2 12 LastLast

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. Fixing Log In\Out Problem
    By _Fear in forum Tutorials
    Replies: 11
    Last Post: 04-14-2010, 10:35 PM
  2. Fixing Potions In Dodian
    By JavaMatt in forum Tutorials
    Replies: 7
    Last Post: 05-31-2008, 11:11 AM
  3. Replies: 8
    Last Post: 05-23-2008, 02:28 AM
  4. Fixing Nulling in P16
    By Lord JavaNerd in forum Tutorials
    Replies: 6
    Last Post: 02-24-2008, 04:01 AM
  5. The Biggest Effiency Fix is in Your BRAIN
    By Oblakastouf in forum Tutorials
    Replies: 24
    Last Post: 12-18-2007, 06:47 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
  •