Jump to content

Explv

Scripter II
  • Posts

    2314
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    100%

Everything posted by Explv

  1. UPDATED 2016-11-20 (Again): - Fixed error dialogs not displaying - Fixed not being able to add proxies - Added context menus, you can now right click on table rows to use options
  2. Sorry about that, issue has been fixed
  3. Sure I will add that in the next update
  4. UPDATED 2016-11-20: - Added some styling to the application - Added optional delay when running configurations
  5. You need to open the bank first. if (getBank() == null) { // walk to bank } else if (!getBank().isOpen()) { if (getBank().open()) { new ConditionalSleep(5000) { @ Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }.sleep(); } } else { getBank().withdrawAll("Coins"); }
  6. UPDATED 2016-11-19: - Added process tracking to visually display what configurations are running - Added import from file buttons for proxies and rs accounts Note: RS account files must have the format username:password or username:password:pin Proxy files must have the format: ip:port or ip:port:user:password
  7. I am not getting that error. Are you using the latest version of my manager? explv_osbot_manager_20161117.jar? And are you sure you updated the osbot path in the bot settings tab to point to osbot 2.4.100?
  8. Yeah I'm aware of the issue, it will be fixed along with some other things in the next update. Thanks
  9. np, good to hear you are finding it useful
  10. Ok I will add some import from file options in the next update
  11. UPDATED 2016-11-17: - Fixed compatibility issues with older configs - Fixed reflection and norandoms parameters not showing in table view - Added version checker, you will now be notified when starting the application if an update is available
  12. Hmm interesting, i'll take a look and fix it tonight. Thanks for the bug report If you want to fix the issue yourself, I believe the issue lies here: https://github.com/Explv/osbot_manager/blob/master/src/bot_parameters/configuration/Configuration.java#L157 I forgot to add: reflection = new SimpleBooleanProperty(); noRandoms = new SimpleBooleanProperty(); Inside the catch block. (Note to build the application you will need to include the OSBot.jar in the output .jar for local script loading to work) I will upload a new version of the application at ~8pm GMT tonight (Can't do it now because I'm at work) Thanks
  13. I will add a paint in the next update
  14. http://osbot.org/forum/topic/100554-explvs-osbot-manager/
  15. UPDATED : 2016-11-15 (Now available) - Fixed amulet crafting - Fixed random character creation on Tutorial Island - Fixed roof disabling on Tutorial Island
  16. UPDATED 2016-11-15: - Added reflection and norandoms parameters
  17. Still not right, what if your inventory is full, and you are in the store? Your bot will carry on trying to buy even though it has no space
  18. That logic will not work. Look at your first two conditions. Your inventory is either full, or not full, therefore your script will always be in the BUY or BANK state.
  19. if inventory is full if not in bank walk to bank else if bank is not open open bank else deposit items else if not in store walk to store else if store is not open open store else if store contains items buy items else world hop It accepts String... and List<String> as well because Store extends ItemContainer, and those methods can be found in ItemContainer
  20. I have pushed an update to fix it, but the SDN has not been updated yet. I will add a comment when it is available
  21. I will add it tonight, if I remember
  22. I have given you an auth to try it out
  23. It's more than 10,000 lines, it's pretty well organised, so if someone tells me that there is a bug with x in y skill, I know where to look
  24. I have pushed a fix for crafting, it will be available when the SDN is next updated. Thanks I will add something to fix this, if not tonight, then tomorrow. Thanks for the report I have pushed a fix for the amulet crafting, it will be available the next time the SDN is updated.
×
×
  • Create New...