Jump to content

Gunman

Super Moderator
  • Posts

    3448
  • Joined

  • Last visited

  • Days Won

    17
  • Feedback

    100%

Everything posted by Gunman

  1. Run jar fix https://johann.loefflmann.net/downloads/jarfix.exe
  2. 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); }
  3. 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.
  4. @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); }
  5. Normal theme will be back when all the functionality of it is fixed after a recently update broke it.
  6. Enjoy burning your eyes out, I don't see the option either.
  7. @Ztheman1 Use the bump this topic button at the top of the page. You're only bumping one thread.
  8. 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.
  9. https://osbot.org/forum/forum/150-refund-requests/
  10. Still needs to be done through PayPal. Either contact their support or make an account through the email you received when purchasing.
  11. @Auron Check the jar and see if the library was added into the script jar, if not then that's the problem. Worst case you can switch to GSON library that is built into the OSBot client.
  12. Yes, only on the mirror client it self thought, not the client it is mirroring. There's also CLI parameters for the sliders - Added '-mfps X' and '-mreactiontime Y' cli arguments to set mirror mode configuration variables.
  13. I do not think this would matter, this may have just been added because of the Steam version of the client. But even if it does I don't think running 1 or 2 accounts would matter, probably looking for farms.
  14. Doesn't appear you have the VIP rank so it may just be the websites invoice system which can be ignored. If the money is actually being taken out you will need to contact PayPal. You should also be able to go back to the email you received when originally purchasing and use it to sign up with that purchase.
  15. Someone said it just worked on CentOS. And according to Muffins is because suntools.aws doesn't hook properly or something
  16. The fps slider, by reaction time slider
  17. Yes use continual click https://osbot.org/api/org/osbot/rs07/api/Mouse.html
  18. Can also change how it moves if you have new mouse enabled https://osbot.org/api/org/osbot/rs07/event/interaction/MouseMoveProfile.html Set over shoots to like 10, it's funny
  19. Tick gang hates mouse gang
×
×
  • Create New...