Jump to content

Khaleesi

$250.00 Donor
  • Posts

    27462
  • Joined

  • Last visited

  • Days Won

    222
  • Feedback

    100%

Everything posted by Khaleesi

  1. No trials on this script
  2. Ya those are fine
  3. Enjoy!
  4. Enjoy!
  5. Enjoy! Enjoy!
  6. Stealth is back up and running, mirror does take longer indeed
  7. guys, gotta check the forum and discord, bot has been down adter last game update and needs updating
  8. Enjoy!!
  9. Did you update your client? EDIT: After some tesrting there is still some broken things in the client, waiting for a fix
  10. Ask again when client is back up, currently offlinie due todays game update
  11. Ask again when client is back up, currently offlinie due todays game update
  12. Client is down atm, please post again when it's live and you are ready
  13. Have fun!!
  14. Khaleesi

    Intro

    Welcome! Have fun
  15. if you have any more question or issues feel free to share and we can take a look at it!
  16. 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()); } } }
  17. Just pick the settings you want?
  18. 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
  19. No idea, inventory open or closed does not matter to recognize items in there. Grab a screenshot when it's stuck like this when you catch it plz
  20. Enjoy!
×
×
  • Create New...