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

    Axolotl last won the day on December 8 2021

    Axolotl had the most liked content!

    6 Followers

    About Axolotl

    Contact Methods

    • Discord
      Axolotl#1862

    Recent Profile Visitors

    4491 profile views

    Axolotl's Achievements

    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. hi any update on your lms script?

      1. Axolotl

        Axolotl

        Hey there, its going quite well. Sitting just a bit shy of 1k score and has made over 30m so far. I'm currently working on a tick system to account for 1tick switches in both the player and targets regards, which is getting pretty close to done. Unfortunately the map coordinates keep changing with LMS so mapping final destination is a pain. ETA for completion is around 1 month as I have other things I'm working on rn too

      2. Armyofgod

        Armyofgod

        thanks for the reply!

    4. hey man. I am looting at GE and sometimes character goes down to the trees (south of the GE )and stays there like 20 min and it really decrease the profit do you know this issue

       

      1. Axolotl

        Axolotl

        Hey kolpala,
        I wasn't aware of this issue, but I will look into it and push a fix. Thank you for letting me know

    5. 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.