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
    • Best Sellers

    • Latest Products

    • Featured

    • Topics

    • Posts

      • Your IP is flagged, and using proxies isn't going to help. They can see you're using proxies. If you're constantly getting banned, it's because, like an anti-cheat system, your IP and HWIDs are most likely flagged. Aside from spoofing, you could try buying a super cheap PC from eBay and calling your ISP to provide you with a new IP, or you could find a residential IP service that is undetectable as a VPN. However, if you continue botting, you'll be caught every time because they caught you once already whether it be dreambot or another botting service. *im not all knowing others correct me if im wrong*  
      • If you really had such an unfathomably bad experience with the bot, I'd refund you if I could, although it's down to Dreambot and they seem to have already given their position on it. Maybe try again when you have figured things out on your end etc, but if you are getting banned so fast I suspect you'll find much the same with most bots.
      • I've followed all your suggestions to avoid bans, including using proper proxies, managing playtime, and sticking to your guide, yet every account I’ve used gets banned almost instantly. Whether it's Jagex improving detection or something else, the bot has been useless for me, and I don’t see it being viable in the future. 
      • Could you provide some more information about the method itself, I was looking around for some ideas on starting my scripting journey.
      • Writing something as a personal / learning project and integrating multiple skills into one "AIO". When I got to handling Melee i'm having a slight issue. My Bank.count("coins") >= cost * (Anything I can put here) seems to always want to default to Mithril instead of Rune which the account im testing it on has the requirements for.    public boolean Find_Gear() { // Define gear requirements by level using a HashMap Map<String, Object[]> gearByLevel = new HashMap<>(); gearByLevel.put("Rune", new Object[]{40, 40, new int[]{1333, 1079, 1113, 1163, 1201}, "Rune Scimitar", 15000}); gearByLevel.put("Mithril", new Object[]{20, 20, new int[]{1329, 1071, 1121, 1159, 1197}, "Mithril Scimitar", 3000}); gearByLevel.put("Iron", new Object[]{1, 1, new int[]{1323, 1067, 1115, 1153, 1191}, "Iron Scimitar", 2000}); // Sort tiers from highest to lowest priority for (Map.Entry<String, Object[]> entry : gearByLevel.entrySet()) { String tier = entry.getKey(); Object[] data = entry.getValue(); int attackLevel = Skills.getRealLevel(Skill.ATTACK); int defenceLevel = Skills.getRealLevel(Skill.DEFENCE); int[] itemIds = (int[]) data[2]; String weaponName = (String) data[3]; int cost = (int) data[4]; // Check level requirements if (attackLevel >= (int) data[0] && defenceLevel >= (int) data[1]) { if (Bank.isOpen()) { if (Bank.contains(itemIds)) { // Withdraw and equip if gear is already in the bank withdrawAndEquipGear(itemIds); return true; } else if (Bank.count("Coins") >= cost * 5) { // Ensure enough coins for all items // Purchase and equip gear if sufficient gold is available purchaseAndEquipGear(itemIds, weaponName, cost); return true; } else { script.log("Not enough coins for " + tier + " gear."); } } else { openBankAndRetry(); } } else { script.log("Requirements not met for " + tier + " gear. Checking next tier..."); } } return false; } I can give the account 10m gold and it'll still try to buy mithril gear. Just curious if something is wrong here? Don't wanna slam it into chatGPT because it spits out some garbled dumb stuff.
    • Popular Contributors

    • Feedback Statistics

      • Positive
        11480
      • Neutral
        19
      • Negative
        152
      • Total Positive
        99%
    ×
    ×
    • 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.