Jump to content

Gunman

Super Moderator
  • Posts

    3520
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Gunman

  1. Yeah, use a lamba to filter it to your position https://www.programiz.com/java-programming/lambda-expression
  2. Does this fix the Candice issue?
  3. If injection got some love it wouldn't be a problem
  4. I don't see how this will change anything if you have a private script made on OSBot
  5. There's one in the store under other, it's free. Unless you need to to do all the activities
  6. They changed this like a month ago to only have it go through the account status page
  7. Like Khal said wouldn't recommend doing that in the onMessage. But an alternative to walk a tile that short of a distance you can also just directly interact with the tile new Position(0, 0, 0).interact(getBot(), "Walk here");
  8. Please note global OSBot T.O.S. always apply in addition to this one, and personal T.O.S can be declared obsolete at a moderators discretion.
  9. Broke with a dependency update. Old theme will return when it's fixed
  10. Mhmm you could try this, maybe it will work? java -Duser.home="C:\Users\Testing" -jar "osbot 2.6.53.jar" Replace "Testing" with your desired window user. And if you have one drive installed could also try uninstalling it, I know that has caused issues in the past.
  11. I don't understand what you're trying to ask
  12. Run jar fix https://johann.loefflmann.net/downloads/jarfix.exe
  13. Some shit like this I guess private void mineRocks() { final RS2Object mineRock = getRock(null); final RS2Object hoverRock = getRock(mineRock); } private RS2Object getRock(final RS2Object ignoreRock) { //Just add this condition to your filter to get the next rock basically // r != ignoreRock return getObjects().closest(r -> r.getId() == 0 && r != ignoreRock); }
  14. Same way you get the rock to mine, just pass the rock you're already mining and add to the filter to ignore that one.
  15. @sexyrussian Probs some shit like this private GraphicsObject getGraphicsObjectOnPosition(final Position position) { final List<GraphicsObject> graphicsObjectList = getGraphicObjects().getAll(); if (position == null || graphicsObjectList == null || graphicsObjectList.isEmpty()) { return null; } return graphicsObjectList.stream().filter(g -> g != null && g.getPosition() == position) .findFirst().orElse(null); }
  16. Normal theme will be back when all the functionality of it is fixed after a recently update broke it.
  17. Enjoy burning your eyes out, I don't see the option either.
  18. @Ztheman1 Use the bump this topic button at the top of the page. You're only bumping one thread.
  19. They're too busy with V3 I guess to do anything. I believe improving the bans was on the list of things they wanted to do. But yeah, this injection is absolutely horrible for current standards. And saying it's because it's injection is just plain out not true.
  20. https://osbot.org/forum/forum/150-refund-requests/
×
×
  • Create New...