Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/07/25 in Posts

  1. And once you get that working, you'll wanna know how to handle the interface: if (getWidgets().isVisible(270)) { getKeyboard().typeString(" ", false); } Of course there's better ways to handle it but this is the quickest/easiest way
    2 points
  2. you would just need to add "Use" to the interact method. as interact wothout any action will just skip the Menu check and left click But this might result in nullpointer exception as the fire object might not always be there, so make sure to always null check widgets, objects, npcs, whatever you load from ingame Here is a super simple snippet: RS2Object fire = script.getObjects().closest("Fire"); if (fire != null) { if(script.getInventory().isItemSelected()){ if(fire.interact("Use")){ ConditionalSleep2.sleep(1000, () -> script.myPlayer().isAnimating()); } }else{ if(script.getInventory().interact("Use", "Raw Salmon")){ ConditionalSleep2.sleep(1000, () -> script.getInventory().isItemSelected()); } } }
    2 points
  3. 1 point
  4. 1 point
  5. Hey there thank you for the feedback, I will help First of all, are you selecting [Bank every trip]? Or are you doing multiple trips. If doing multiple trips then I would set a custom amount to maybe 5-10 or so, but if not, then remove teleports from the loadout entirely because the bot will automatically set the required teleports, if it still doesn't do this, please lemme know, I can always adjust/update the code
    1 point
  6. 1 point
  7. I purchased this script and have had it running for a couple of hours, however I noticed that it is barely getting any points per game. Is there something that I may need to toggle in the script's settings?
    1 point
  8. That's probably because you are using npc.interact() instead of npc.interact("yourAction")? might wanna share some of your code to see what's going on for you and what exactly you are trying to do, as this sounds as a code issue
    1 point
  9. Hi, @Czar , I’m running into a couple of issues and could use some help: When using the Barrows teleport, once it ends, the script doesn’t exit the dungeon because it’s looking for a teleport tab to leave. How to fix this? While setting up the inventory, I’m not sure what value to use for the teleports. If I set a low number, it eventually runs out and causes issue #1. But if I set it too high (for example, 50 tabs), every time it goes to the bank it tries to withdraw 50 tabs. I’d really appreciate any advice. I’d like to keep it running for a while, but this issue keeps stopping it. Thanks in advance!
    1 point
  10. Ty Czar I figured because its fairly new it was just a part of the process. I appreciate everything you do.
    1 point
×
×
  • Create New...