Jump to content

Explv

Scripter II
  • Posts

    2314
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    100%

Everything posted by Explv

  1. Just an update on this, I have successfully written a method to check if an account is banned, it takes 1 or 2 seconds to check an account, and does so by logging into the RuneScape website and checking the account settings page. I will integrate this into the GUI tonight or tomorrow
  2. I will see what I can do I don't understand what you are trying to ask
  3. I believe that only works for free scripts. The best way to get the SDN ID is to run the script, the ID will be in the log
  4. Just pushed a fix, it will be available when the SDN is next updated Will take a look at these issues as soon as possible, thanks Haven't had time to address this yet, will look at it ASAP When I have ironed out all the bugs, and added some more features then I will likely request it to be premium
  5. UPDATED 2017-01-11 - Now loads all scripts found in a single .jar Thanks to @PineappleSausage for the contribution
  6. You can already view the logs, I haven't added a button yet but if you right click a configuration and select view log it will display.Thanks, I'll take a look at your git request tomorrow after work I will also add some build instructions to the readme
  7. If you just want to execute a script after another has stopped you can use my manager: http://osbot.org/forum/topic/100554-explvs-osbot-manager/ But if you need something more complex, you could try initialising a script like so (I have not tested this): // Initialise the script Script someOtherScript = new SomeScript(); someOtherScript.exchangeContext(getBot()); // Call onStart someOtherScript.onStart(); // In onLoop of your wrapper script call return someOtherScript.onLoop(); You would probably also need to override the stop() method of the script you are running, so that it doesn't stop the ScriptExecutor and does something else instead.
  8. Easiest solution is just to sleep until either your player can no longer combine items, or (if applicable, your character has leveled up): new ConditionalSleep(60_000) { @ Override public boolean condition() { return !canCombine() || getDialogues().isPendingContinuation(); } }.sleep(); Where canCombine() would be something like: public boolean canCombine() { return getInventory().contains("Item 1") && getInventory().contains("Item 2"); }
  9. Explv

    1k pc

    Quality over quantity
  10. SDN has been updated, mining should now be fixed
  11. UPDATED 2017-01-09 - Added functionality to write OSBot logs to files stored in ~/ExplvOSBotManager/Logs/ - Added functionality to interface to view the log for a configuration
  12. I will be adding the option to stop a script after x time (although this means the client will be instantly killed instead of the account logging out first) You could always ask the scripter to add CLI support, and some kind of stop condition to their script
  13. 1) Right click on the module and select "Open Module Settings", or press F4, to open the module settings window. 2) Go the the Artifacts section:. 3) Select the green cross, and select JAR -> Empty 4) - Set the name of the output.jar file, change the Output directory to the OSBot/Scripts directory, and move the 'module name' compile output from the right hand side under Available Elements, to the left hand side in your .jar: 5) Select Apply and close the window 6) To build the .jar first select the Build menu at the top, and select Build Artifacts, then select build in the menu that appears
  14. This is not the correct section for this question, this is the scripting help section. But anyway, you need to open the bot with Java. You can download it from here: http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html
  15. UPDATED 2017-01-07 - Removing start all button (you can still start all configurations by selecting all with Ctrl-A and pressing start) - Adding stop button (this will kill the client if the configuration is running) - Added -norender option
  16. Don't forget to update the CLI usage link! http://i.imgur.com/YcYszFA.png
  17. Not currently no, the osbot developers will need to add a -break CLI parameter before I can add that. I will be adding the option to stop the bot manually or after x time, but the only way I can do this is by closing the client so the runescape account would not log out until it times out, if you understand what I mean.
  18. You need to select an account and add at least one script.
  19. If you mean the nointerface option then yes it does When you add a script there is a field for parameters
  20. Issue has been fixed, please update
  21. When did you encounter this bug? If it was before I made the update, then yes it probably has been resolved Edit: Nevermind, there does appear to be an issue, I will push a fix for it now I have pushed a fix for the issue, mining will work again when the SDN is next updated, sorry for the inconvenience
  22. You add your own proxies in the Proxy tab, and then select what proxy you want to use when adding a configuration
×
×
  • Create New...