Twin Posted March 8, 2015 Share Posted March 8, 2015 va.lang.NullPointerException at org.osbot.rs07.api.Widgets.getWidgets(bk:272) at org.osbot.rs07.api.Widgets.getAll(bk:172) at org.osbot.rs07.api.filter.FilterAPI.filter(rh:259) at org.osbot.rs07.api.Widgets.containingText(bk:455) at org.osbot.rs07.api.Widgets.containingText(bk:381) at org.osbot.rs07.api.Bank.getParent(ue:260) at org.osbot.rs07.api.Bank.getInterfaceId(ue:328) at org.osbot.rs07.api.Bank.isOpen(ue:473) at TwinGranite.onLoop(TwinGranite.java:82) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ok:252) at java.lang.Thread.run(Unknown Source) That's the error im getting, but im not sure if it's on my end or osbot's end. Link to comment Share on other sites More sharing options...
AresScripts Posted March 8, 2015 Share Posted March 8, 2015 My users get it too Link to comment Share on other sites More sharing options...
Twin Posted March 8, 2015 Author Share Posted March 8, 2015 My users get it too Hmm, I read that some banking things were broken but I wasn't sure what was. Some people were doing some workarounds to get into the bank. Link to comment Share on other sites More sharing options...
Developer Zach Posted March 8, 2015 Developer Share Posted March 8, 2015 A patch for this should be released on Sunday. We've patched a number of bugs already and would like to get some final testing in. Link to comment Share on other sites More sharing options...
Eliot Posted March 8, 2015 Share Posted March 8, 2015 Yes banking is BROKEN. Link to comment Share on other sites More sharing options...
Celeos Posted March 8, 2015 Share Posted March 8, 2015 Everything seems fine to me. Link to comment Share on other sites More sharing options...
iJodix Posted March 8, 2015 Share Posted March 8, 2015 Banking works fine for me. Link to comment Share on other sites More sharing options...
Twin Posted March 8, 2015 Author Share Posted March 8, 2015 Banking works fine for me. if (bank.isOpen()) { bank.withdraw("Waterskin(4)", 20); break; } else { bank.open(); } it will open the bank, but once it gets to withdraw, it will crash, and give me the error. Link to comment Share on other sites More sharing options...
iJodix Posted March 8, 2015 Share Posted March 8, 2015 if (bank.isOpen()) { bank.withdraw("Waterskin(4)", 20); break; } else { bank.open(); } it will open the bank, but once it gets to withdraw, it will crash, and give me the error. try "widgets.getBank().withdraw("Item", 20);" Link to comment Share on other sites More sharing options...
Celeos Posted March 8, 2015 Share Posted March 8, 2015 Bank#depositAll Bank#withdrawAll Don't throw any errors for me. Link to comment Share on other sites More sharing options...
Twin Posted March 8, 2015 Author Share Posted March 8, 2015 try "widgets.getBank().withdraw("Item", 20);" Worked! Thank you! Link to comment Share on other sites More sharing options...