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
  • Human Like Bot Improvements


    z10n

    Recommended Posts

    1. Human Mouse Data, so each mouse movement and click stlye emulates a human perfectly. We need 99% accuracy human replication.

    2. Webwalking behaivor, needs to be humanized, currently, the bots will click the minimap, then the mouse will wait until the next coordinate click. The mouse should shift around slightly, to emulate a human bumping their mouse around or just slightly moving their mouse naturally. The web-walking behaivor is super-botlike IMO.

    3. Mouse Speed should be variable, and based upon human mouse speed variation. When a human moves a mouse, wether a laptop trackpad or portable mouse, they speed up and slow down, according to their hand and arm geometries and the click path length, DreamBot using the CONSISTANT mouse speed, is totally un-realistic for a human player and should be randomized at least, and clone human behaivor at best. Thanks.

    A type of Mirror mode, so we can reflect the client to make the bot client undetectable.

    Link to comment
    Share on other sites

    Here's a simple random mouse speed code 

     

    public class class extends AbstractScript {
    
        private void mouseSpeed() {
    
            final int random = Calculations.random(1, 3);
            if (random == 1) {
                MouseSettings.setSpeed(40);
            }
    
            else if (random == 2) {
                MouseSettings.setSpeed(60);
            }
    
            else {
                MouseSettings.setSpeed(100);
            }
    
        }
    
        private void fishing() {
            this.mouseSpeed();
            "your fishing function"
        }
        
    }
    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • 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.