
Originally Posted by
Critical
where do i change that? which location. More info please.
Open client.java then search for "setsidebarinterface" You should see 11-12 that look like this although yours may be a little different
Code:
setSidebarInterface(0, 2423); // attack tab
setSidebarInterface(1, 3917); // skills tab
setSidebarInterface(2, 638); // quest tab
setSidebarInterface(3, 3213); // backpack tab
setSidebarInterface(4, 1644); // items wearing tab
setSidebarInterface(5, 5608); // pray tab
if (playerAncientMagics == 0) {
setSidebarInterface(6, 1151);
playerAncientMagics = 0;
}
if (playerAncientMagics == 1 && q3 == 15) {
setSidebarInterface(6, 12855);
playerAncientMagics = 1;
}
if (playerAncientMagics == 2 && q10 == 15) {
setSidebarInterface(6, 18787);
playerAncientMagics = 2;
}
setSidebarInterface(7, 962); // clan chat
setSidebarInterface(8, 5065); // friend
setSidebarInterface(9, 5715); // ignore
setSidebarInterface(10, 2449); // logout tab
setSidebarInterface(11, 4445); // wrench tab
setSidebarInterface(12, 147); // run tab
setSidebarInterface(13, 962); // harp tab
Now i a cheap way to do this would be to change this with the code below
Highlight this
Code:
if (playerAncientMagics == 0) {
setSidebarInterface(6, 1151);
playerAncientMagics = 0;
}
if (playerAncientMagics == 1 && q3 == 15) {
setSidebarInterface(6, 12855);
playerAncientMagics = 1;
}
if (playerAncientMagics == 2 && q10 == 15) {
setSidebarInterface(6, 18787);
playerAncientMagics = 2;
}
And replace it with this
Code:
if (playerAncientMagics == 0) {
setSidebarInterface(6, 12855);
playerAncientMagics = 0;
}
if (playerAncientMagics == 1 && q3 == 15) {
setSidebarInterface(6, 1151);
playerAncientMagics = 1;
}
if (playerAncientMagics == 2 && q10 == 15) {
setSidebarInterface(6, 18787);
playerAncientMagics = 2;
}
This makes it to where you start on ancients each time and use the ancient altar to switch to regular that way both books are still accessible. And for future reference sometimes it takes days to get the help you need. Posting that no one helps isnt going to get people to want to help you. We are not here to assist you at your leisure.