Jump to content

Khaleesi

Script Officer
  • Posts

    27587
  • Joined

  • Last visited

  • Days Won

    223
  • Feedback

    100%

Everything posted by Khaleesi

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

    Intro

    Welcome! Have fun
  12. if you have any more question or issues feel free to share and we can take a look at it!
  13. 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()); } } }
  14. Just pick the settings you want?
  15. 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
  16. 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
  17. Enjoy!
×
×
  • Create New...