Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • testttmewmc

    Members
    • Posts

      12
    • Joined

    • Last visited

    Recent Profile Visitors

    The recent visitors block is disabled and is not being shown to other users.

    testttmewmc's Achievements

    1. Ok, does VIP get instructions on how to use this feature? No point in buying VIP if I don't get a guide on how to use it ya know?
    2. Any way to get a guide on how to use the new Menu swapper? This is API rn: inject public static boolean inject(MenuRow row) setMenuRow public static void setMenuRow(MenuRow row)
    3. RuneLite has it... would be nice to implement something like this in DB if possible?
    4. I've got a maxed main that is 100% botted minus quests. You can't convince me that your ban rate doesn't corelate to the # of quests you've completed. Once you do a few harder tasks, they won't ban you anymore. I've ran some really shitty scripts with bad errors like spam clicking banker over and over or something, and it doesn't get banned. I bot for maybe 4-6 hours each day. Again, maxed main, no bans.
    5. I'm trying to just get my bot to hold down the "1" key on the keyboard: Keyboard.holdKey('1', () -> false, 8000); I've also tried: Keyboard.holdKey('1', () -> true, 8000); in case I wasn't understanding the API correctly. Neither hold down "1". If I do ()->true then "1" is pressed ONCE at the end of the timeout length. Am I not understanding this correctly or is this broken?
    6. Figured out you can just do .setZoom(500) and it'll scroll down to 537. Just had to tell it to scroll to less than possible?
    7. public static void zoomCameraOut() { if (Camera.getZoom() > 537) { MethodProvider.log("Zooming out"); if (Camera.setZoom(537)) { MethodProvider.sleepUntil(() -> Camera.getZoom() <= 537, 600); } } } When executing this bit of code, the bot will zoom out until it's at zoom level 561, but cannot zoom all the way out to 537 (max zoom dist) for some reason... any ideas?
    8. Another... Problem with: Nexus in home Current behavior: Teleporting to Varrock square, and then running to the G.E. Desired: Teleporting directly to G.E., if the player's nexus contains the G.E. option
    9. Hi, I don't want a refund, I just want the issues fixed. I'm willing to pay to support your development. Not angry, just sharing feedback. I've noticed lots of small minor time-wasters that would contribute to an overall more productive bot, but these are the main issues I've noticed so far. Some other issues include opening the bank for no reason when wearing correct gear/inventory, full boosted stats, etc. If configuration options are coming, that's great, thanks. Another is using the incorrect pool in your house... I posted on discord: GameObject nexus = GameObjects.closest(gameObject -> gameObject != null && gameObject.getName().toLowerCase().contains("nexus")); Optional<GameObject> pool = GameObjects.all().stream().filter(gameObject -> gameObject != null && gameObject.getName().toLowerCase().contains("pool")) .min((o1, o2) -> (int) (o1.distance(nexus) - o2.distance(nexus))); This will select the closest pool in relation to the nexus, instead of in relation to the player. This saves ~20 squares of running (in my circumstance).
    10. Script is very opinionated, with little to no options to choose from. I don't want the script to reorganize my bank... I don't want the script to eat manta-rays... I don't want the script to use the lunar colony bank. Where are the configuration options?? Also script dies multiple times while attacking Vorkath, and there are no prayer pots left in the inventory, and the player is out of prayer. The script tries to enable prayers in this state, which is impossible (0 pray points, 0 pray potions). I've also seen the script not eat food when less than 21 HP, with a projectile incoming (max hit of 32), and then dies without eating.
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.