search for this in the client class
Code:
public void drawSideIcons(){
theres where the sprite locations are, change them to where they should be. if you dont know where they should be, just login ur client and do :: dataon, and just play with the coordinates until they look correct.
sideIcons[0].drawSprite(X, Y);
thats the X,Y you change.
heres mine labeled so you can know which one is what tab.
Code:
/* Top sideIcons */
if(tabInterfaceIDs[0] != -1)//attack
sideIcons[0].drawSprite(27, 7);
if(tabInterfaceIDs[1] != -1)//stat
sideIcons[1].drawSprite(54, 5);
if(tabInterfaceIDs[2] != -1)//quest
sideIcons[2].drawSprite(82, 4);
if(tabInterfaceIDs[3] != -1)//inventory
sideIcons[3].drawSprite(116, 4);
if(tabInterfaceIDs[4] != -1)//equipment
sideIcons[4].drawSprite(152, 2);
if(tabInterfaceIDs[5] != -1)//prayer
sideIcons[5].drawSprite(179, 3);
if(tabInterfaceIDs[6] != -1)//magic
sideIcons[6].drawSprite(207, 6);
/* Bottom sideIcons */
if(tabInterfaceIDs[8] != -1)//friends
sideIcons[8].drawSprite(57, 305);
if(tabInterfaceIDs[9] != -1)//ignore
sideIcons[9].drawSprite(85, 305);
if(tabInterfaceIDs[10] != -1)//logout
sideIcons[10].drawSprite(121, 302);
if(tabInterfaceIDs[11] != -1)//options
sideIcons[11].drawSprite(157, 304);
if(tabInterfaceIDs[12] != -1)//emotes
sideIcons[12].drawSprite(187, 300);
if(tabInterfaceIDs[13] != -1)//music
sideIcons[13].drawSprite(207, 301);
}