Quote from GFX Tom on April 24, 2022, 1:29 pmwhat 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;
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;