Jump to content

Khaleesi

Script Officer
  • Posts

    27648
  • Joined

  • Last visited

  • Days Won

    225
  • Feedback

    100%

Everything posted by Khaleesi

  1. Set your screen resolution to 100% Desktop -> right click -> display settings ->scroll a bit down and change scale and layout to 100%
  2. Khal Guardians of the rift updated to V1.30: - Fixed issue with finding rift guardian Will be live soon! Enjoy
  3. Enjoy!
  4. How does it even get behind the workbench? Will check it out
  5. Enjoy!
  6. Khal Smither (All in One) updated to V1.19: - Added coal bag for bar smelting Live soon! Enjoy
  7. Ya, it does priorizes those npcs when it detects a kid luring one, but it does not afk in between those
  8. Enjoy!
  9. No sorry, not really a point to it either?
  10. Enjoy!
  11. Enjoy!
  12. Ya those should work without ^^
  13. It should only drop items that you can thief from stalls But you will need food for the script to work
  14. Enjoy!
  15. That's not added, could add an option for that soon
  16. It does not do any quests, it can walk to BF and play the minigame
  17. You already have an expired trial on this script "/
  18. You already have an expired trial on this script
  19. Enjoy!
  20. You can put multiple messages in there if you wanna do it like that, if (dialogues.selectOption("Take to sawmill: 26 x Mahogany logs", "Take to sawmill: 26 x Teak logs")) {} and you can just improve this piece of code like this: (widget ids can change once in a while if new things get added or UI changes) RS2Widget toSawmillWidget = getWidgets().getWidgetContainingText(219, "Take to sawmill:"); if (toSawmillWidget != null && toSawmillWidget.isVisible()) { // Either interact if(toSawmillWidget.interact()){ } //OR do a keyboard press, usually it's alway on 1 I assume? if(getKeyboard().typeKey('1')){ } }else{ useLogsOnButler(logName); }
  21. Enjoy!
  22. Enjoy!
  23. Khal FIsher (All in One) updated to V3.02: - Drift net fishing - Drift net depositing nets amount check added to prevent storing nets if already at max amount. - Drift net fishing - Dropping vials properly now Live soon! Enjoy!
  24. Could always write something yourself with widgets? RS2widget myOption = script.getWidgets().getWidgetContainingText(219, "My text"); if(myOptyion !+ null && myOption.isVisible()){ myOption.interact(); } or even write that method yourself using equals instead of contains RS2Widget myOption = script.getWidgets().getAll().stream() .filter(w -> w.getRootId() == 219) .filter(w -> w.getMessage().equals("My Text")) .findFirst().orElse(null); if(myOption !+ null && myOption.isVisible()){ myOption.interact(); }
×
×
  • Create New...