someguy567 Posted December 8, 2018 Share Posted December 8, 2018 my scripts open tabs like inventory and skills to check things but they aren't opening anymore after the update. i put the new jar for 2.5.30 in the build path but still nothing happens. anyone else got this issue? Quote Link to comment Share on other sites More sharing options...
Developer Patrick Posted December 8, 2018 Developer Share Posted December 8, 2018 1) Which script? 2) Resizable or fixed? 3) Stealth injection or mirror? Quote Link to comment Share on other sites More sharing options...
someguy567 Posted December 8, 2018 Author Share Posted December 8, 2018 3 minutes ago, Patrick said: 1) Which script? 2) Resizable or fixed? 3) Stealth injection or mirror? my own script doing tutorial, its not opening the tabs anymore when it unlocks them fixed mode stealth injection Quote Link to comment Share on other sites More sharing options...
Butters Posted December 8, 2018 Share Posted December 8, 2018 45 minutes ago, Patrick said: 1) Which script? 2) Resizable or fixed? 3) Stealth injection or mirror? Same issue for me, but only checked in tutorial island. Tabs don't open in tutorial island in both fixed and resizable. Worked in v2.5.28, didn't work in dev build 2.5.29 and doesn't in 2.5.30 Quote Link to comment Share on other sites More sharing options...
Developer Patrick Posted December 8, 2018 Developer Share Posted December 8, 2018 I'll check it out edit: found the issue, next version will have it fixed 1 Quote Link to comment Share on other sites More sharing options...
dormic Posted December 10, 2018 Share Posted December 10, 2018 (edited) I created my own as a failsafe to fall back on, got those values with fixed mode. COMBAT(548, 48, -1), QUEST(548, 50, -1), INVENTORY(548, 51, -1), EQUIPMENT(548, 52, -1), PRAYER(548, 53, -1), MAGIC(548, 54, -1), CLANCHAT(548, 31, -1), FRIENDS(548, 33, -1), ACCOUNT_MANAGER(548, 32, -1), LOGOUT(548, 34, -1), SETTINGS(548, 35, -1), EMOTES(548, 36, -1), MUSIC(548, 37, -1), SKILLS(548, 49, -1); private TabWid(int main, int sub, int subsub) { this.setMain(main); this.setSub(sub); this.setSubsub(subsub); } /** * @return the main */ public int getMain() { return main; } /** * @param main the main to set */ public void setMain(int main) { this.main = main; } /** * @return the sub */ public int getSub() { return sub; } /** * @param sub the sub to set */ public void setSub(int sub) { this.sub = sub; } /** * @return the subsub */ public int getSubsub() { return subsub; } /** * @param subsub the subsub to set */ public void setSubsub(int subsub) { this.subsub = subsub; } private int main, sub, subsub; Edited December 10, 2018 by dormic Quote Link to comment Share on other sites More sharing options...