RECENT NEWS
📢 𝟑𝟎% Discount for all ads only this month ❄️

Fixing handcuffs in makeover mage

GFX Tom
power_settings_new
Seen 2 months ago
Mithril Warrior (21/30)
Mithril Warrior
0
0
0
21 Posts
Posts
0
Warning level
1
Likes
0
Dislikes
Joined: 2022-04-24

what youre adding:

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:

Click here to view the original image of 897x739px.

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[68] = new IDK();
		cache[68].anInt657= 4;
		cache[68].anIntArray658 = new int[] {353};
		cache[68].anIntArray659[0] = 43072;
		cache[68].anIntArray660[0] = 4550;
00
  • Like
Reactions: