Random Interval AutoClicker for OSRS

Discussion in 'Sythe Lib Archive' started by Program, Jan 18, 2018.

Random Interval AutoClicker for OSRS
  1. Unread #1 - Jan 18, 2018 at 9:16 PM
  2. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    Simple script that allows you to auto-click a spot on OSRS with random time intervals to minimize detection.

    At the top of the script are your options for where and how often the bot should click. Read the lines after the double forward slashes "//" for more info.

    By default, you can also tell the script what text should be on-screen before you click. So for example, say I'm thieving a stall, but I don't want to click a guard that's walking by, I can set the targetHoverText to "ThieveStall" and that'll ensure that you only click on the stall. If you don't care for this option, set checkIfHovering to false.

    I plan to make a video describing how to get your X and Y coordinates from your OSRS client if you do not know how.

    Press escape to quit the script.

    Useful links if you don't know how to get started, follow in order:
    [VIDEO TUTORIAL] -- How to get colors and coordinates from your OSRS client for SytheLib scripts
    SytheLib Download [Alpha7]
    SDE - Development Environment for SytheLib (use this to code scripts)

    Code:
    SetVirtualMouseJavaModeOn();
    if (SetWindow("Old School") == ""){Die("Could not find runescape");}while(SelectInnerWindow("SunAwtCanvas")){}
    // SetVirtualInputsOff();
    
    global checkIfHovering = false; // Do you want to check if you're clicking something specific?
    global targetHoverText = "TalktoGrandExchangeClerk"; // What text should show up when hovering this target? No spaces, hyphens, etc. Can be a subset of the characters, like "TalktoGrand".
    global targetX = 253; // Put the X position of where you want to click here.
    global targetY = 135; // Put the Y position of where you want to click here.
    global minClickInterval = 100; // Minimum interval before clicking again. In Milliseconds.
    global maxClickInterval = 1000; // Maximum interval before clicking again. In Milliseconds.
    
    global font1 = LoadFontFromBitmap(LoadBitmapFromString(
            "0006!0q_70LRx4sF+o`-Q(69p^U(kguHXRVl1Tsn0MG=!91lqkYyysv05B4pQlF|AB=t!pCYVX" +
            "2)h2*aN}8UdPWxLnl6jJ%>_}#<YMUm-wKGsQs=Eg^#D-)KbxvtDmSwF`?t#to6n2AZ-MNfjWpv" +
            "RtIc{xZVmAA`T-_+vEwW>7>yr?annH-Gie}w9`?p^E+rsyAG}0uaMw4CKk&-5DV<ne%>3gf9b=" +
            "?V}nG$6ILOFj|n@D6x+BEyG-1nW{OQ`kpiYSR9$QhNKw6V6NbuL%Ur1^Q0`OT7&ii>>TFC$(%i" +
            "854~kjs0nAfO`!ht{f6`O;L^$Bcz}<S^}FUgn=z1{nnaL{LzA)qd-*&AAX(^4%-Ta>=Bm$%au(" +
            "O=UClkK^Xv?$`6%v7#o~UT%r82MKpVMRLX0n(UK%baPDkU{8|6Y9g@G4~^Dkag}pp1{>b<1!3o" +
            "IGbEXSBL!Fp!>t`L0Y;WeQ}c>hDrnXE?bL+LtMcZOX=u-TyoIJmGw$+yu8SE3CYo5vYcfa_l9E" +
            "4n0cDVM)x!j_ETU4!?zPb|Br%MVGg4w94PD$3Nf8l1WeJJ2UEQFvKJLr9?Xe)lf|GvSOvN|02P" +
            "8)&ePssOHnEFDNnG0I+Zx_;ZHqs=QO#d9T*YE(WTK-|8r;_^BC=Z+weVleUo~6aqqJ>XD)UapX" +
            "-2WJqeY)}ZOy45W(ug<^K#o}CM$2va=CoksVVf810+SHMgA`2ig2MJ{SW7&00000", 0xff00ff, true),
    "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:", 0xff00ff);
    
    def CheckIfHoveringTarget() {
        Scrape();
        var x = 0; var y = 0;
        var foundText = OCRUsingFont(x, y, font1, 0, 0, 300, 100, 0, 30, 50, 0);
        return Contains(targetHoverText, foundText);
    }
    
    def AutoClick() {
        MoveMouse(targetX, targetY);
        while(true) {
            if(checkIfHovering && CheckIfHoveringTarget()) {
                ClickMouse(targetX, targetY, 1);
            } else if(!checkIfHovering) {
                ClickMouse(targetX, targetY, 1);
            }
            Sleep(RandomInt(minClickInterval, maxClickInterval));
        }
    }
    
    AutoClick();
    
     
    Last edited: Jun 24, 2018
  3. Unread #2 - Jan 26, 2018 at 7:50 AM
  4. Kimberly
    Joined:
    Aug 17, 2017
    Posts:
    194
    Referrals:
    1
    Sythe Gold:
    206

    Kimberly Active Member

    Random Interval AutoClicker for OSRS

    Going to give this a test later :D
     
  5. Unread #3 - Jan 26, 2018 at 12:55 PM
  6. Buyacc
    Joined:
    Mar 20, 2015
    Posts:
    5,136
    Referrals:
    8
    Sythe Gold:
    1,005
    Discord Unique ID:
    212649581656145922
    Discord Username:
    Buyacc#7886
    Verified Hardcore Spam Forum Participant Twitter Writing Competition Winner Community Participant Paper Trading Competition Participant Detective Facebook Promoter In Memory of Jon
    Le Kingdoms Player Secret Santa 2023 Christmas 2023 Tier 1 Prizebox Christmas 2020

    Buyacc Hello
    $100 USD Donor New Competition Winner

    Random Interval AutoClicker for OSRS

    Download the client here:
    SytheLib Download [Alpha7]
     
  7. Unread #4 - Jan 26, 2018 at 1:50 PM
  8. Seeking GP
    Joined:
    Nov 17, 2008
    Posts:
    2,397
    Referrals:
    2
    Sythe Gold:
    2,209
    Discord Unique ID:
    268460696910561282

    Seeking GP Grand Master

    Random Interval AutoClicker for OSRS

    I have used Automouse clicker on a few accounts for 99 mage, not had a ban yet, 1st account i done it on was about 2 years ago and its not been banned. Also left it on for 6 hour kick off then strait back to it, atleast 18 hours a day :p
     
  9. Unread #5 - Jan 26, 2018 at 2:14 PM
  10. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    Feel free to add my skype if you have issues or questions.

    live:sythe.andy
     
    ^ Kimberly likes this.
  11. Unread #6 - Jan 27, 2018 at 2:08 AM
  12. Bert
    Joined:
    Jun 11, 2014
    Posts:
    29,389
    Referrals:
    241
    Sythe Gold:
    131,699
    Vouch Thread:
    Click Here
    Discord Unique ID:
    852575300579622982
    Discord Username:
    bertgold
    CARRRRL that kills people Baby Yoda The Dark Side Radioactive Ninja Oktoberfest 2013 Wubba Lubba Dub Dub The Mortyest Morty Diamond 420 yolo swag blaze it fuck the popo legalize it anyone got some chips
    Ninetales Primeape Weedle Wurmple Spinda Chingling Swellow Tangrowth Wynaut Snover
    Piplup Penguin Kingdra Seadra Yanma Venomoth Drifblim Snubbull Magikarp In Memory of Jon

    Bert bertgold - Buy/Sell RSGP - Click Here.

    Random Interval AutoClicker for OSRS

    Nice one andy, a very good idea let me know what the ban rate is on this. This should be great for splashing for 6 hours and even alching for magic.
     
    ^ Program likes this.
  13. Unread #7 - Jan 27, 2018 at 2:20 AM
  14. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    I can't make you any guarantees, but I can tell you that on a new account I made recently I've managed to successfully use this script and others to get mils of exp without a ban while pretty much suiciding this last month or so. :)

    Edit: @Bert This video tutorial may be of interest to you if you haven't done anything with SytheLib previously: [VIDEO TUTORIAL] -- How to get colors and coordinates from your OSRS client for SytheLib scripts
     
    ^ Pirate likes this.
    Last edited: Jan 27, 2018
  15. Unread #8 - Jan 27, 2018 at 3:05 AM
  16. Bert
    Joined:
    Jun 11, 2014
    Posts:
    29,389
    Referrals:
    241
    Sythe Gold:
    131,699
    Vouch Thread:
    Click Here
    Discord Unique ID:
    852575300579622982
    Discord Username:
    bertgold
    CARRRRL that kills people Baby Yoda The Dark Side Radioactive Ninja Oktoberfest 2013 Wubba Lubba Dub Dub The Mortyest Morty Diamond 420 yolo swag blaze it fuck the popo legalize it anyone got some chips
    Ninetales Primeape Weedle Wurmple Spinda Chingling Swellow Tangrowth Wynaut Snover
    Piplup Penguin Kingdra Seadra Yanma Venomoth Drifblim Snubbull Magikarp In Memory of Jon

    Bert bertgold - Buy/Sell RSGP - Click Here.

    Random Interval AutoClicker for OSRS

    Thanks looks very interesting, when I have some free time I will definitely test this out!
     
  17. Unread #9 - Jan 30, 2018 at 2:19 PM
  18. Coin
    Joined:
    Nov 3, 2016
    Posts:
    4,620
    Referrals:
    5
    Sythe Gold:
    5,037
    Vouch Thread:
    Click Here
    Discord Unique ID:
    1145567644330766460
    Discord Username:
    coinrs
    Rupee Gohan has AIDS Pokémon Trainer

    Coin No.1 Web Development Services On Sythe
    Owner Donor $300 USD Donor New

    Random Interval AutoClicker for OSRS

    I need this for rs3 xD
     
  19. Unread #10 - Jan 30, 2018 at 4:26 PM
  20. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    With a slight tweak it'd work for RS3 too. Seems botting is most popular on OSRS though.
     
  21. Unread #11 - Jan 31, 2018 at 1:15 PM
  22. mdp
    Joined:
    Nov 19, 2017
    Posts:
    71
    Referrals:
    0
    Sythe Gold:
    74
    Two Factor Authentication User

    mdp Member

    Random Interval AutoClicker for OSRS

    I've never actually tried it, but this should also work for Guthan's at NMZ?
    But you'd also need to know if you died, i'm guessing there is a way to find this in sytheLib - may have a look in to it.
     
  23. Unread #12 - Feb 1, 2018 at 12:12 AM
  24. Blupig
    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant

    Blupig BEEF TOILET
    $5 USD Donor

    Random Interval AutoClicker for OSRS

    OCR the chat to detect text "Oh dear! You have died."
     
    ^ Program likes this.
  25. Unread #13 - Feb 2, 2018 at 11:42 AM
  26. tigeris
    Joined:
    Dec 2, 2015
    Posts:
    7,753
    Referrals:
    0
    Sythe Gold:
    4,602
    Discord Unique ID:
    Don't DM me brokies
    Extreme Homosex Two Factor Authentication User Halloween 2020 Christmas 2020 Valentine's Day 2021 Summer 2020 Toast Wallet User Potamus Gohan has AIDS Pokémon Trainer
    I saw Matthew (2)

    tigeris Not Buying/Selling Anything Don't Dm Me
    $200 USD Donor New

    Random Interval AutoClicker for OSRS

    As a nmz trainer i've noticed quite a lot of people just standing there autoclicking anti-melee with reasonably high stats, so i figure ban rates are really low even on the regular one
     
  27. Unread #14 - Feb 4, 2018 at 11:22 AM
  28. Class
    Joined:
    Dec 17, 2008
    Posts:
    1,805
    Referrals:
    3
    Sythe Gold:
    11
    <3 n4n0 (3) Gohan has AIDS MushyMuncher

    Class Formerly known as lime soda
    Lime Soda Donor

    Random Interval AutoClicker for OSRS

    How would you make this work on rs3? I'm getting an error: GetConsoleScreenBufferInfo failed: 6
     
  29. Unread #15 - Feb 4, 2018 at 11:29 AM
  30. Panda
    Joined:
    Oct 4, 2014
    Posts:
    16,676
    Referrals:
    17
    Sythe Gold:
    1,332

    Panda MANY RETARDS IMPOSTER ME, ALWAYS REQUEST A SYTHE PM!!

    Random Interval AutoClicker for OSRS

    Idk much about sythelib right now but it will probably help if you provide some information as to what you've (tried to) change to op's script in order to make it work for rs3
     
  31. Unread #16 - Feb 4, 2018 at 3:27 PM
  32. Class
    Joined:
    Dec 17, 2008
    Posts:
    1,805
    Referrals:
    3
    Sythe Gold:
    11
    <3 n4n0 (3) Gohan has AIDS MushyMuncher

    Class Formerly known as lime soda
    Lime Soda Donor

    Random Interval AutoClicker for OSRS

    Not sure what the issue turned out to be, but I can get it to work passably as a clicking script with hard coded coordinates. Unfortunately, I can't seem to get key presses to work (for RS3 EOC Action bar); has anyone had any luck with this?
     
    ^ Ayl likes this.
  33. Unread #17 - Feb 4, 2018 at 3:31 PM
  34. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    Get keypresses to work...? Not sure what you mean, but I didn't make it auto-keypress, just auto-click.
     
  35. Unread #18 - Feb 4, 2018 at 3:38 PM
  36. Class
    Joined:
    Dec 17, 2008
    Posts:
    1,805
    Referrals:
    3
    Sythe Gold:
    11
    <3 n4n0 (3) Gohan has AIDS MushyMuncher

    Class Formerly known as lime soda
    Lime Soda Donor

    Random Interval AutoClicker for OSRS

    Yea, this may need a separate topic - sorry to hijack yours. I just couldn't get the rs3 client to recognize key presses in game (though it worked for the login screen).
     
    Last edited: Feb 4, 2018
  37. Unread #19 - Feb 4, 2018 at 3:49 PM
  38. Program
    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Random Interval AutoClicker for OSRS

    Yeah I haven't touched RS3 in years, don't even have it downloaded :p But I've never had an issue having keypresses register while running a script unless you don't have the window selected when typing. Maybe I'll take a look one of these days, but I was hoping to focus more on the OSRS side of scripting.
     
    ^ Pendulum likes this.
  39. Unread #20 - Feb 5, 2018 at 5:29 PM
  40. Xers
    Joined:
    Feb 5, 2018
    Posts:
    41
    Referrals:
    1
    Sythe Gold:
    56
    Supporting Business

    Xers Member
    $5 USD Donor New

    Random Interval AutoClicker for OSRS

    Great job with this, will give it a try out :)
     
< What would you like to see added or changed with SytheLib? | >

Users viewing this thread
1 guest


 
 
Adblock breaks this site