Jump to content

Explv

Scripter II
  • Posts

    2313
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    100%

Everything posted by Explv

  1. If the default OSBot login handler isn't clicking it, then use a custom login handler, and click the button yourself: https://osbot.org/forum/topic/109560-a-simple-login-handler/
  2. The easiest thing for you to do is just to add a break task at the end, without setting the logout option. The script will wait for the amount of time you specify before logging out
  3. You mean on completion of the script?
  4. Pushed a fix, please download the latest version: https://github.com/Explv/Explvs-AIO/releases/latest Thanks for the bug report!
  5. I'll double check, we may have to hardcode the bank location, and file a bug report with OSBot I'll add it to the backlog of things to do
  6. Thanks mate , this script will be free forever though.
  7. Combat will be introduced into the script eventually. Before I can do that I need to add support for configuring equipment for individual tasks, so that you can specify exactly what armour / weapons you want to wear when you go to fight. That's what I'm working on at the moment: https://i.imgur.com/DSDFro3.gifv
  8. Made some improvements to rune essence mining in the latest release, hopefully it shouldn't get stuck any more: https://github.com/Explv/Explvs-AIO/releases/latest
  9. Fixed: https://github.com/Explv/Explvs-AIO/releases/latest
  10. I think if we force the bot to walk to the closest rune essence thing, instead of trying to interact from the point of teleporting, then the camera issue shouldn't happen so much.
  11. Will take a look this evening, they probably changed something to do with the interface
  12. Fixed, please download the latest version https://github.com/Explv/Explvs-AIO/releases/latest
  13. .......using the exact method I just showed you. There is a class called DismissRandom which is an extension of RandomSolver. The RandomExecutor runs it every few seconds, and each time it runs it checks if an NPC exists with the criteria I just showed you. If the NPC exists, it dismisses it. Here's the decompiled class if for some strange reason you still don't believe me:
  14. I think you can check that the NPC is interacting with you, and that it has mentioned your player's name in the last x seconds, and has a certain action, like Dismiss. Maybe something like this (note completely untested): Optional<NPC> randomNPCOpt = getNpcs().getAll().stream().filter(npc -> npc.getActions() != null && Arrays.asList(npc.getActions()).contains("Dismiss") && // NOT SURE WHAT THE ACTION IS HERE npc.isInteracting(myPlayer()) && npc.hasMentionedPhrase(myPlayer().getName(), 30000) && // check the NPC is saying our name npc.getModel() != null ).findAny(); if (randomNPCOpt.isPresent()) { NPC randomNPC = randomNPCOpt.get(); switch (randomNPC.getName()) { case "Genie": handleGenie(); break; default: randomNPC.interact("Dismiss"); // NOT SURE WHAT THE ACTION IS HERE break; } }
  15. No, you should have better side projects than RuneScape scripts. RuneScape scripts are not complex programs, and most employers would probably frown upon cheating. Employers don't really expect you to have any side projects straight out of uni anyway. As long as you have a good degree, and can write / talk about what projects you worked on as part of your degree, that should be good enough.
  16. So your server is running on port 9000, but your Script is trying to connect to port 8080? Try changing the port in your Script to 9000.
  17. Isn't it "Logs" not "logs"? That will throw a NullPointerException if the name is incorrect. To hover the next tree you will need to store the current tree you are chopping. Then find the closest tree that is != the tree you're currently chopping, and call hover() on it.
  18. Please read this message: Download link is: https://github.com/Explv/Explvs-AIO/releases/latest
  19. Issue should be fixed, please download the latest version: https://github.com/Explv/Explvs-AIO/releases/latest
  20. I'm aware the SDN version is broken. I have contacted the devs regarding it, but no reply. Will take a look at pottery. There is essence mining in the mining script. I think it's the bottom option in the list of rocks.
  21. Fishing bug should be a quick fix, I'll do it today. When a task doesn't have the requirements, it should proceed to the next one. Looks like an exception got thrown in your case, I'll take a look at it. I'll also see if I can add some way to sell / buy multiple items at once at the GE
  22. Should be fixed, please download the latest version: https://github.com/Explv/Explvs-AIO/releases/latest Added to the backlog: https://github.com/Explv/Explvs-AIO/issues/53 Should be possible, will get to it when I have time
×
×
  • Create New...