I was also doing this, and it took me ages, there are a few things you have to change. I will tell you how.
So we are using chatback as an example. So open up client.java and find:
Code:
aClass30_Sub2_Sub1_Sub2_1198 = new Class30_Sub2_Sub1_Sub2(class44_2, "chatback", 0);
And make it this:
Code:
aClass30_Sub2_Sub1_Sub1_1198 = new Class30_Sub2_Sub1_Sub1(class44_2, "chatback", 0);
We changed aClass30_Sub2_Sub1_Sub2_1198 to aClass30_Sub2_Sub1_Sub1_1198.
Now search for:
Code:
Class30_Sub2_Sub1_Sub2_1198
Notice how we got that code, we took it off the first part of the chatback sprite loader. Now you should come to
private Class30_Sub2_Sub1_Sub2 aClass30_Sub2_Sub1_Sub2_1198;
Change it to:
private Class30_Sub2_Sub1_Sub1 aClass30_Sub2_Sub1_Sub1_1198;
Notice we changed the end Sub2 to Sub1.
Now find
aClass30_Sub2_Sub1_Sub2_1198 = null;
And change it to
aClass30_Sub2_Sub1_Sub1_1198 = null;
Changed the Sub2 to Sub1 again.
Now find:
Code:
aClass30_Sub2_Sub1_Sub2_1198.method361(0, 16083, 0);
Change it to:
Code:
aClass30_Sub2_Sub1_Sub1_1198.method348(0, 16083, 0);
We changed Sub2 to Sub1 again and we changed method361 to method348.
Now you must load the sprites in Class30_Sub2_Sub1_Sub1. But i'm sure you already know how to do that.
Hope this helped you.