Jump to content

Eagle Scripts

Lifetime Sponsor
  • Posts

    7250
  • Joined

  • Last visited

  • Days Won

    12
  • Feedback

    100%

Everything posted by Eagle Scripts

  1. Oak larders are indeed supported, the capes aren't. Trial granted .
  2. Sure thing. Trial granted .
  3. Sure thing. Both trials granted .
  4. Not yet unfortunately. Please try and remind me tonight/tomorrow, hopefully I'll have some time tomorrow.
  5. Sure thing. Trial granted
  6. Sure thing. Trial granted .
  7. Sure thing. Trial granted .
  8. Re-granted
  9. Thanks for the info! Currently I do not have any plans to add this in as I'm rather busy and this does not seem vital. In the event of my agenda clearing up I could potentially consider this although this won't be any time soon, unfortunately.
  10. Please elaborate more on this, I've never heard about it .
  11. Sure thing. Trial granted .
  12. All trials have been (re)granted.
  13. Sure thing. Trial granted .
  14. Sure thing. Trial granted .
  15. Sure thing. Trial granted .
  16. It does not
  17. Sure thing. Trial granted
  18. Sure thing. Trial granted .
  19. Sure thing. Trial granted .
  20. Make sure to actually initialize the JComboBox. Try and find the part in explv's tutorial that contains: = new JComboBox That being said, if you don't know the difference between variable declaration and initialization, my advice is for you to first learn some Java fundamentals as opposed to creating scripts.
  21. No problem at all. Mind sharing the solution with us?
  22. I'm not entirely sure what your exact question is so I'm not sure if my reply will answer it. Look into filters. e.g.: public class WidgetMessagesFilter implements Filter<RS2Widget> { private final String[] messages; public WidgetMessagesFilter(final String... messages) { this.messages = messages; } @Override public final boolean match(final RS2Widget rs2Widget) { if (rs2Widget == null || !rs2Widget.isVisible() || rs2Widget.getMessage() == null) { return false; } return Arrays.stream(messages).anyMatch(m -> rs2Widget.getMessage().contains(m)); } } Usage: final RS2Widget loveEagleFilter = s.getWidgets().singleFilter(s.getWidgets().getAll(), new WidgetMessageFilter("TEXT HERE"));
  23. I've been notified of this bug a few days ago and I've said that I'll try and look into it somewhere the next upcoming days once I have some spare time! If you haven't seen an update on the thread regarding this in a couple of days feel free to remind me. Sure thing. Trial granted .
  24. Sure thing. Trial Granted .
  25. Sounds like the stamina potions might be bugged. Could you try and disable this feature to see how it performs then? Sure thing. Trial granted .
×
×
  • Create New...