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
  • Axolotl

    Scripter
    • Posts

      101
    • Joined

    • Last visited

    • Days Won

      3

    Everything posted by Axolotl

    1. There are far more important things to worry about when it comes to bot detection, I don't think jagex is SS your client and analyzing it for paint. There isn't a reason for him to add it as dreambot controls that. If you want to disable the paint you can do it simply by toggling this:
    2. 1. The zoom shouldn't affect ban rates much. Click precision / mouse movements imo affect it more than camera movement. Having it zoomed out is actually how lots of players play based on the task they are doing also so I wouldn't really worry about that. 2. The paint is within the dreambot client and there is absolutely no way for jagex to see it, its purely cosmetic for the user using the script.
    3. you can ensure the input string will always be formatted to OSRS naming conventions like so: //Ensures itemName follows OSRS naming conventions private static String itemNameFormatting(String itemName) { StringBuilder formatted = new StringBuilder(); String lower = itemName.toLowerCase(); boolean upperCase = true; for(int i = 0; i < lower.length(); i++) { char letter = lower.charAt(i); if(upperCase) { String upper = "" + letter; formatted.append(upper.toUpperCase()); upperCase = false; } else { if(letter == ' ') upperCase = true; formatted.append(letter); } } MethodProvider.log("Formatted itemName: " + itemName + " to: " + formatted); return formatted.toString(); } If you want to add extra polish you can add a Document Filter to the textfield and force it to not accept numbers (or if wanting numbers, not except letters)
    ×
    ×
    • 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.