Jump to content

Khaleesi

Script Officer
  • Posts

    27579
  • Joined

  • Last visited

  • Days Won

    223
  • Feedback

    100%

Everything posted by Khaleesi

  1. Did you update your client? EDIT: After some tesrting there is still some broken things in the client, waiting for a fix
  2. Ask again when client is back up, currently offlinie due todays game update
  3. Ask again when client is back up, currently offlinie due todays game update
  4. Client is down atm, please post again when it's live and you are ready
  5. Have fun!!
  6. Khaleesi

    Intro

    Welcome! Have fun
  7. if you have any more question or issues feel free to share and we can take a look at it!
  8. 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()); } } }
  9. Just pick the settings you want?
  10. 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
  11. 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
  12. Enjoy!
  13. You can also cancel it here: https://osbot.org/forum/clients/purchases/ But check paypal to be sure, sometimes paypal keeps it active for some reason
  14. No sorry
  15. Took me about 2 weeks and I did it the first day possible, like a few days later there were already 50000 tickets more so I assume it's going to take a huge time for them to catch up
  16. should not matter if it's open or not, just restart your client
×
×
  • Create New...