Jump to content

Gunman

Super Moderator
  • Posts

    3481
  • Joined

  • Last visited

  • Days Won

    17
  • Feedback

    100%

Everything posted by Gunman

  1. You're running 32 bit Java. For some unknown reason it sometimes just stops working. You can either try reversing any changes you made to the pc, whether this is software, or hardware related and report back if you noticed a change that fixed it. Or you can uninstall 32 bit Java and install 64 bit Java. The only way I have noticed to get 32 bit Java working again is if I reinstalled Windows.
  2. If I remember correctly it has something to do with the installation of Java
  3. If you can't click on the mirror button it's because the Java version you're running the client with isn't Java 8. I don't know shit about macs so this is as far as I can help you.
  4. Has Jagex anti cheat gotten better? Yes and no. Is OSBot detected? Should i use mirror/client? Any detection rate differences? Mirror is considered far "safer" than Stealth Injection. Bans on Injection can be triggered instantly. Something I don't think I was able to replicate with Mirror. Anything else i should know starting a little p2p bot farm in 2022? Yeah look into sandboxie/proxifier if you are gonna farm with mirror.
  5. If you still can't figure out send gif/pic of the menu options
  6. That does exist/did exist, called Frost Caves and even did the Jade fight. Normally it just comes down to getting the accounts to write the script, demand for such scripts, and whether or not they think their time investing into such a script would be worth it. And you if you ever get scripter rank there's a thread with a list of script suggestions like Calisto etc.
  7. Try jar fix https://johann.loefflmann.net/downloads/jarfix.exe
  8. Pretty sure there isn't. Just make a method and pass Entity to it or the walk position/area and have that method set it for you so you're not repeating the same code everywhere
  9. That's public no. Closest one I can think of is Excellent Vorkath
  10. Explv* Apa's guide uses Eclipse. Also the official guide Token released for setting up scripting environment also using Intellij
  11. If you're continuing the same subscription then yes. Other wise if you bought let's say VIP 3 times in the store those wouldn't stack, would need to get in contact with an Admin to get it fixed.
  12. Reading this will be more than enough https://www.programiz.com/java-programming
  13. What OG Botter said. Pretty sure the client dev said he was gonna try to add that if he ever got the chance to rework the client tabs which should allow you to set proxies for each tab.
  14. Sadly not. If Pat ever gets around to reworking the bot tabs like he wants to it make be possible then, but currently no.
  15. Finally, I am getting recognition for doing nothing
  16. 4. Did it mention anything about recovery? 5. If he did then the password would have changed. Check if you can login to the account still or not.
  17. Use hardware mouse if you're just running 1 account, it will help with bans on injection. And as far as I am aware no one in the major botting platform has reported any kind of 3rd party client ban like OpenOSRS had.
  18. Naw I am calling everyone braindead Yeah my b, was early in the development, was some bugs that got it stuck a lot
  19. Works for me @Override public int onLoop() throws InterruptedException { Sleep.sleepUntil(()-> getInventory().contains("Bones"), 5_000); Sleep.sleepUntil(()-> getInventory().contains("Bones"), 5_000, 600); return 600; } import org.osbot.rs07.utility.ConditionalSleep; import java.util.function.BooleanSupplier; public final class Sleep extends ConditionalSleep { private final BooleanSupplier condition; public Sleep(final BooleanSupplier condition, final int timeout) { super(timeout); this.condition = condition; } public Sleep(final BooleanSupplier condition, final int timeout, final int interval) { super(timeout, interval); this.condition = condition; } @Override public final boolean condition() throws InterruptedException { return condition.getAsBoolean(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout) { return new Sleep(condition, timeout).sleep(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout, final int interval) { return new Sleep(condition, timeout, interval).sleep(); } }
×
×
  • Create New...