Autoclicker with Gaussian (Normal Distribution) Randomness

Discussion in 'RuneScape 3 Cheating' started by The_Empire, Jun 1, 2018.

Autoclicker with Gaussian (Normal Distribution) Randomness
  1. Unread #1 - Jun 1, 2018 at 9:51 AM
  2. The_Empire
    Joined:
    Apr 20, 2017
    Posts:
    8
    Referrals:
    0
    Sythe Gold:
    9

    The_Empire Newcomer

    Autoclicker with Gaussian (Normal Distribution) Randomness

    I'm curious if such an autoclicker exists. I already know of autoclickers like Murgees that randomize your click location or click speed, but it uses a uniform randomness. It seems like a basic statistical analysis on Jagex's part could detect this.

    Has anyone created an autoclicker that uses a normal distribution, either by specifying mean and standard deviation or total range. This seems like would much more realistically simulate a human clicking in game with a lower chance of detection, while not being that complex to program. I'm considering trying to do it in AHK myself with my limited experience, but I wanted to know if it already exists.
     
    Last edited: Jun 1, 2018
  3. Unread #2 - Aug 9, 2018 at 4:40 AM
  4. pur3andy
    Joined:
    Apr 6, 2009
    Posts:
    53
    Referrals:
    1
    Sythe Gold:
    11

    pur3andy Member

    Autoclicker with Gaussian (Normal Distribution) Randomness

    I have one for personal use.
    You can select a zone and assign the click position to be random within the zone. The click timings are also random between your set parameters (along with the chance of hitting a completely different random click timer). All parameters are dynamic and available to the user.
     
  5. Unread #3 - Sep 27, 2018 at 6:21 PM
  6. Rare Scripts
    Joined:
    Dec 3, 2014
    Posts:
    638
    Referrals:
    5
    Sythe Gold:
    493

    Rare Scripts Apprentice
    $50 USD Donor New SytheLib Developer

    Autoclicker with Gaussian (Normal Distribution) Randomness

    Simba :)

    Simple wait, There should be more wait functions but this always worked for me.
    Mousebox randomly picks a coordinate within the box.

    Code:
    program RareScripts;
    const
    minWait = 2000; //min sleep miliseconds
    maxWait = 5000; //max sleep miliseconds
    
    begin
    mouseSpeed := 15+Random(2); //speed 15 +random 2
    repeat
    mousebox(IntToBox(X1, Y1, X2, Y2), mouse_left); //left click area box
    wait(randomrange(minWait, maxWait)); //wait minWait, maxWait random
    until(false);
    end.

    If you want to click 100 times instead of a infinite loop:

    Code:
    program RareScripts;
    const
    maxLoops = 100; //loops before stopping
    minWait = 2000; //min sleep miliseconds
    maxWait = 5000; //max sleep miliseconds
    
    var
    i:Integer;
    
    begin
    mouseSpeed := 15+Random(2); //speed 15 +random 2
    repeat
    mousebox(IntToBox(X1, Y1, X2, Y2), mouse_left); //left click area box
    wait(randomrange(minWait, maxWait)); //wait minWait, maxWait random
    inc(i);
    until(i>=maxLoops);
    end.
     
    ^ Fyrix likes this.
    Last edited: Sep 27, 2018
  7. Unread #4 - Nov 4, 2018 at 1:20 AM
  8. jivvust
    Joined:
    Jul 2, 2017
    Posts:
    81
    Referrals:
    0
    Sythe Gold:
    87
    Discord Unique ID:
    468560500699955200

    jivvust Member

    Autoclicker with Gaussian (Normal Distribution) Randomness

    Simba would be great if it were more accessible.
    As a newbie reading the forums it feels like entering a jungle without a machette. Nothing makes any sense, there are layers upon layers upon layers of software and applications that need to be installed, customized and updated.

    It also doesn't help there are almost no updated scripts on the forums. Most of them are 2-3 years old and non functional.

    The premise is great, but only for those who already know what they're doing.
     
  9. Unread #5 - Nov 13, 2018 at 4:34 AM
  10. Mirahice
    Joined:
    Nov 12, 2018
    Posts:
    15
    Referrals:
    0
    Sythe Gold:
    15

    Mirahice Newcomer

    Autoclicker with Gaussian (Normal Distribution) Randomness

    Even if you don't know what you are doing, They have updated tutorials on how to install and get it setup, And any of the scripting tutorials are still pretty much up to date, It isn't really a site where you go to just bot and go, They want people to learn and contribute.
     
  11. Unread #6 - Nov 16, 2018 at 8:52 AM
  12. Declanogia
    Joined:
    Mar 28, 2018
    Posts:
    97
    Referrals:
    0
    Sythe Gold:
    94
    Two Factor Authentication User

    Declanogia Member

    Autoclicker with Gaussian (Normal Distribution) Randomness

    I tried to install Simba libraries but none worked for me tbh.

    About AHK, can easly make weighted random distribution to simulate human like behaviour, been using in my scripts long time.
     
  13. Unread #7 - Nov 16, 2018 at 2:22 PM
  14. jivvust
    Joined:
    Jul 2, 2017
    Posts:
    81
    Referrals:
    0
    Sythe Gold:
    87
    Discord Unique ID:
    468560500699955200

    jivvust Member

    Autoclicker with Gaussian (Normal Distribution) Randomness

    It's more complicated than that, especially for beginners. Tutorials are rarely updated and even the "fresh" ones are several years old, with some parts outdated and others poorly explained.

    Literally 99% of all publicly available scripts are non-functional today, and need either major fixes or complete rewrites.

    Reflection hooks almost never get updated, or, at best, get updated sporadically, by different people with no continuation. Currently, nobody uses reflection unless they know how to update hooks themselves, which takes another level of skillset.

    Color has limitations and and challenges on it's own, but at least it's functional without months of training. So there's that.

    Learning everything that's required to successfully bot with Simba from scratch, without being a seasoned programmer, is a steep uphill battle. It takes significant time and effort to understand what to do and how to do it to create even the most basic scripts. Anything more complicated will take weeks, if not months of hard effort. Lots of stick, not enough carrot.

    At this point, for a beginner, I think it's better to learn basic Java and go with one of the major botting platforms. Tribot, Osbot, Runemate are better upkept and much better documented. Writing private scripts for yourself will achieve similar level of security (low banrate) and will help to learn skills that transition well into real life (Java programming).
     
    Last edited: Nov 16, 2018
  15. Unread #8 - Dec 4, 2018 at 12:33 PM
  16. ariabot
    Joined:
    Sep 23, 2015
    Posts:
    618
    Referrals:
    0
    Sythe Gold:
    401
    Vouch Thread:
    Click Here
    Tier 1 Prizebox

    ariabot Forum Addict
    $25 USD Donor New

    Autoclicker with Gaussian (Normal Distribution) Randomness

    You could make one with RuneMate, though that's more of a full botting client.

    double min = 69, max = 420;
    harp.interact("Tune");
    Execution.delay(Random.nextGaussian(min, max));
     
  17. Unread #9 - Dec 9, 2018 at 5:51 PM
  18. Burnley
    Joined:
    Oct 16, 2008
    Posts:
    5,025
    Referrals:
    6
    Sythe Gold:
    612
    M
    Not sure if srs or just newfag... Sythe's 10th Anniversary Two Factor Authentication User Former OMM

    Burnley Hero
    $5 USD Donor

    Autoclicker with Gaussian (Normal Distribution) Randomness

    I use ReMouse and have got to 94 mage splashing, maxed meelee at NMZ with it on a 10 minute loop
     
< Is there anyway to bypass rs3 f2p trade limit? | Looking for RWT tips >

Users viewing this thread
1 guest


 
 
Adblock breaks this site