OELABOELA2 Posted August 24, 2018 Share Posted August 24, 2018 Hello, Not sure if this is a bug but when I try to open a tab it won't open it. I've tried this on the friends/ignore/inventory tab. Quote Link to comment Share on other sites More sharing options...
MALS Posted August 24, 2018 Share Posted August 24, 2018 For me it works as expected. I've isolated the code in a empty script: @Override public void onStart() throws InterruptedException { getTabs().open(Tab.FRIENDS); sleep(1000); getTabs().open(Tab.INVENTORY); sleep(1000); getTabs().open(Tab.IGNORES); } Only thing that seems wrong is that the friends and ignores tab seem to be swapped. This code opens the ignores tab first. Next time you have a problem try isolating the problem and adding print statements. This solves most problems for me. 1 Quote Link to comment Share on other sites More sharing options...
OELABOELA2 Posted August 24, 2018 Author Share Posted August 24, 2018 For me it isn't able to open any of those tabs and I've added print statements all around my code. I'm not using reflection and using the 2.5.8 client. Quote Link to comment Share on other sites More sharing options...
MALS Posted August 24, 2018 Share Posted August 24, 2018 1 hour ago, OELABOELA2 said: For me it isn't able to open any of those tabs and I've added print statements all around my code. I'm not using reflection and using the 2.5.8 client. Strange. So you literally have something like this in your code; log("About to open tab"); getTabs().openTab(Tab.Inventory); log("Opened tab"); and it only prints those 2 lines and doesn't open tab? In that case I guess its a bug in the API Quote Link to comment Share on other sites More sharing options...
OELABOELA2 Posted August 24, 2018 Author Share Posted August 24, 2018 Are you also using the 2.5.8 client? I've ran your script and it doesn't wanna open any tabs at all. Tried it on two different machines (using the same jar) Quote Link to comment Share on other sites More sharing options...
Medusa Posted August 24, 2018 Share Posted August 24, 2018 This "bug" started happening after the latest update. My script opens the ignore tab instead of friends, so I guess we'll just have to wait until they update their API Quote Link to comment Share on other sites More sharing options...
Juggles Posted August 24, 2018 Share Posted August 24, 2018 Use widgets instead. You have to adjust to what's given to you. It'll be fixed soon but in the meantime find other ways to continue your farms Quote Link to comment Share on other sites More sharing options...