Jump to content

Khaleesi

Script Officer
  • Posts

    27630
  • Joined

  • Last visited

  • Days Won

    225
  • Feedback

    100%

Everything posted by Khaleesi

  1. Enjoy!
  2. 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); }
  3. Enjoy!
  4. Enjoy!
  5. 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!
  6. 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(); }
  7. Enjoy!
  8. There is an option for it which you can select
  9. Enjoy!
  10. Charges like that are usually never stored in configs, you will have to "Check" on it at start to cache it if it's so important And use messages to keep track of charges. or just bring a few and equip a new one if the old one breaks
  11. Enjoy!
  12. Enjoy!
  13. No sorry
  14. Enjoy!
  15. Done! You already have an expired trial on this script
  16. Enjoy!
  17. For sure!
  18. Enjoy!
  19. Enjoy!
  20. Enjoy!
  21. Khal fighter updated to V1.18: - Added Menu invokes support - Added Special attack weapon Live soon! Enjoy!
  22. Enjoy!
  23. Still alive it auto updates when you open the client and click update client If not, just download it again from the top
  24. Khal plankmaker (All in One) updated to V1.32: - Fixed walking issue to lumberyard Live soon! Enjoy!
×
×
  • Create New...