Purpose: Changing The Color Of The Stats
Server Base: All
Creds: No-One Really , Coz' Alot Of People Know 
NOTE: My First Tut , So Dont Be So Harsh 
First Of All , Search For : public void refreshSkills() {
you will see something like this
Code:
sendQuest(""+playerLevel[0]+"", 4004);
sendQuest(""+playerLevel[2]+"", 4006);
sendQuest(""+playerLevel[1]+"", 4008);
sendQuest(""+playerLevel[4]+"", 4010);
sendQuest(""+playerLevel[5]+"", 4012);
sendQuest(""+playerLevel[6]+"", 4014);
sendQuest(""+playerLevel[3]+"", 4016);
sendQuest(""+playerLevel[16]+"", 4018);
In the first "" add a color tag @[email protected] for eg
Code:
sendQuest("@[email protected]"+playerLevel[0]+"", 4004);
sendQuest("@[email protected]"+playerLevel[2]+"", 4006);
sendQuest("@[email protected]"+playerLevel[1]+"", 4008);
sendQuest("@[email protected]"+playerLevel[4]+"", 4010);
sendQuest("@[email protected]"+playerLevel[5]+"", 4012);
sendQuest("@[email protected]"+playerLevel[6]+"", 4014);
sendQuest("@[email protected]"+playerLevel[3]+"", 4016);
sendQuest("@[email protected]"+playerLevel[16]+"", 4018);
sendQuest("@[email protected]"+playerLevel[15]+"", 4020);
sendQuest("@[email protected]"+playerLevel[17]+"", 4022);
sendQuest("@[email protected]"+playerLevel[12]+"", 4024);
sendQuest("@[email protected]"+playerLevel[9]+"", 4026);
sendQuest("@[email protected]"+playerLevel[14]+"", 4028);
sendQuest("@[email protected]"+playerLevel[13]+"", 4030);
sendQuest("@[email protected]"+playerLevel[10]+"", 4032);
sendQuest("@[email protected]"+playerLevel[7]+"", 4034);
sendQuest("@[email protected]"+playerLevel[11]+"", 4036);
sendQuest("@[email protected]"+playerLevel[8]+"", 4038);
sendQuest("@[email protected]"+playerLevel[20]+"", 4152);
sendQuest("@[email protected]"+playerLevel[18]+"", 12166);
sendQuest("@[email protected]"+playerLevel[19]+"", 13926);
This Will make the first level white >> 99/99
Now Scroll Down , and you will see this
Code:
sendQuest("@[email protected]"+getLevelForXP(playerXP[0])+"", 4005);
sendQuest("@[email protected]"+getLevelForXP(playerXP[2])+"", 4007);
sendQuest("@[email protected]"+getLevelForXP(playerXP[1])+"", 4009);
sendQuest("@[email protected]"+getLevelForXP(playerXP[4])+"", 4011);
sendQuest("@[email protected]"+getLevelForXP(playerXP[5])+"", 4013);
sendQuest("@[email protected]"+getLevelForXP(playerXP[6])+"", 4015);
sendQuest("@[email protected]"+getLevelForXP(playerXP[3])+"", 4017);
sendQuest("@[email protected]"+getLevelForXP(playerXP[16])+"", 4019);
sendQuest("@[email protected]"+getLevelForXP(playerXP[15])+"", 4021);
sendQuest("@[email protected]"+getLevelForXP(playerXP[17])+"", 4023);
sendQuest("@[email protected]"+getLevelForXP(playerXP[12])+"", 4025);
sendQuest("@[email protected]"+getLevelForXP(playerXP[9])+"", 4027);
sendQuest("@[email protected]"+getLevelForXP(playerXP[14])+"", 4029);
sendQuest("@[email protected]"+getLevelForXP(playerXP[13])+"", 4031);
sendQuest("@[email protected]"+getLevelForXP(playerXP[10])+"", 4033);
sendQuest("@[email protected]"+getLevelForXP(playerXP[7])+"", 4035);
sendQuest("@[email protected]"+getLevelForXP(playerXP[11])+"", 4037);
sendQuest("@[email protected]"+getLevelForXP(playerXP[8])+"", 4039);
sendQuest("@[email protected]"+getLevelForXP(playerXP[20])+"", 4153);
sendQuest("@[email protected]"+getLevelForXP(playerXP[18])+"", 12167);
sendQuest("@[email protected]"+getLevelForXP(playerXP[19])+"", 13927);
This will change the color of the second lvl 99/99 << this one
ok now search for
public void setSkillLevel(int skillNum, int currentLevel, int XP) {
you find this.
Code:
sendQuest("@[email protected]"+playerLevel[0]+"", 4004);
sendQuest("@[email protected]"+getLevelForXP(playerXP[0])+"", 4005);
}
if(skillNum == 2) {
sendQuest("@[email protected]"+playerLevel[2]+"", 4006);
sendQuest("@[email protected]"+getLevelForXP(playerXP[2])+"", 4007);
}
if(skillNum == 1) {
sendQuest("@[email protected]"+playerLevel[1]+"", 4008);
sendQuest("@[email protected]"+getLevelForXP(playerXP[1])+"", 4009);
}
if(skillNum == 4) {
sendQuest("@[email protected]"+playerLevel[4]+"", 4010);
sendQuest("@[email protected]"+getLevelForXP(playerXP[4])+"", 4011);
}
if(skillNum == 5) {
sendQuest("@[email protected]"+playerLevel[5]+"", 4012);
sendQuest("@[email protected]"+getLevelForXP(playerXP[5])+"", 4013);
}
if(skillNum == 6) {
sendQuest("@[email protected]"+playerLevel[6]+"", 4014);
sendQuest("@[email protected]"+getLevelForXP(playerXP[6])+"", 4015);
}
if(skillNum == 3) {
sendQuest("@[email protected]"+playerLevel[3]+"", 4016);
sendQuest("@[email protected]"+getLevelForXP(playerXP[3])+"", 4017);
}
if(skillNum == 16) {
sendQuest("@[email protected]"+playerLevel[16]+"", 4018);
sendQuest("@[email protected]"+getLevelForXP(playerXP[16])+"", 4019);
}
if(skillNum == 15) {
sendQuest("@[email protected]"+playerLevel[15]+"", 4020);
sendQuest("@[email protected]"+getLevelForXP(playerXP[15])+"", 4021);
}
if(skillNum == 17) {
sendQuest("@[email protected]"+playerLevel[17]+"", 4022);
sendQuest("@[email protected]"+getLevelForXP(playerXP[17])+"", 4023);
}
if(skillNum == 12) {
sendQuest("@[email protected]"+playerLevel[12]+"", 4024);
sendQuest("@[email protected]"+getLevelForXP(playerXP[12])+"", 4025);
}
if(skillNum == 9) {
sendQuest("@[email protected]"+playerLevel[9]+"", 4026);
sendQuest("@[email protected]"+getLevelForXP(playerXP[9])+"", 4027);
}
if(skillNum == 14) {
sendQuest("@[email protected]"+playerLevel[14]+"", 4028);
sendQuest("@[email protected]"+getLevelForXP(playerXP[14])+"", 4029);
}
if(skillNum == 13) {
sendQuest("@[email protected]"+playerLevel[13]+"", 4030);
sendQuest("@[email protected]"+getLevelForXP(playerXP[13])+"", 4031);
}
if(skillNum == 10) {
sendQuest("@[email protected]"+playerLevel[10]+"", 4032);
sendQuest("@[email protected]"+getLevelForXP(playerXP[10])+"", 4033);
}
if(skillNum == 7) {
sendQuest("@[email protected]"+playerLevel[7]+"", 4034);
sendQuest("@[email protected]"+getLevelForXP(playerXP[7])+"", 4035);
}
if(skillNum == 11) {
sendQuest("@[email protected]"+playerLevel[11]+"", 4036);
sendQuest("@[email protected]"+getLevelForXP(playerXP[11])+"", 4037);
}
if(skillNum == 8) {
sendQuest("@[email protected]"+playerLevel[8]+"", 4038);
sendQuest("@[email protected]"+getLevelForXP(playerXP[8])+"", 4039);
}
if(skillNum == 20) {
sendQuest("@[email protected]"+playerLevel[20]+"", 4152);
sendQuest("@[email protected]"+getLevelForXP(playerXP[20])+"", 4153);
}
if(skillNum == 18) {
sendQuest("@[email protected]"+playerLevel[18]+"", 12166);
sendQuest("@[email protected]"+getLevelForXP(playerXP[18])+"", 12167);
}
if(skillNum == 19) {
sendQuest("@[email protected]"+playerLevel[19]+"", 13926);
sendQuest("@[email protected]"+getLevelForXP(playerXP[19])+"", 13927);
Now Obviously change them to the colors you desire and enjoy a better looks stats menu 
Here is a Picture 