Sy Herblore Autoclicker

Discussion in 'RuneScape 3 Cheating' started by Sypherz, Apr 22, 2018.

Sy Herblore Autoclicker
  1. Unread #1 - Apr 22, 2018 at 2:35 PM
  2. Sypherz
    Joined:
    Dec 13, 2008
    Posts:
    23,745
    Referrals:
    1
    Sythe Gold:
    622
    M
    Sythe's 10th Anniversary

    Sypherz Legend
    $5 USD Donor New Retired Sectional Moderator Competition Winner

    Sy Herblore Autoclicker

    Hey everyone. Over the past few days I've been developing a simple herblore autoclicker. I'm a newish programmer, and my current project is to max my old 15-year-old main account through botting.

    So far I've reached 99 prayer with a simple seren cleaning script, and herblore/fletching are my next goals. I've put a lot of thought into anti-ban as you can see below. This page will function as a change log, and to test the waters as to how many people would be interested in me sharing.

    The script is written in Python and mostly works mostly on coordinates (but it doesn't require the user to input anything other than their chosen bank and number of loops currently.). It's an autoclicker so it does not work in the background. The bot completed an error-free test-run of 500 inventories, and should be completely bug-free at this time.

    If anyone would like to try it out please let me know. I'm not sure if it's ready to share yet but if people are interested I'll see what I can do :)


    Version 0.1

    Click Here to See the Script in Action

    Anti-ban Functionality:

    Randomized clickbox for every click
    Small random breaks included in each step
    Randomized, consistent, and adjustable mouse movement speed
    Sometimes chooses to click the herb instead of the potion, etc. etc.
    Checks skills every so-often
    Detects if bot is broken and ends the script

    Current Goals:
    Any advice/help with these is welcome.

    Add option to choose amount of potions or total time (easy)
    Auto-detect bank chest (easyish)
    Add screen movement anti-ban (medium)
    Add GUI and turn into an executable (medium)
    Break handler that logs you back in after a few hrs (medium)
    Add human-like mouse movement (hard)​
     
    ^ StickTalk and Fast Coins like this.
    Last edited: Apr 22, 2018
  3. Unread #2 - Apr 22, 2018 at 4:01 PM
  4. Fast Coins
    Joined:
    Mar 22, 2017
    Posts:
    1,355
    Referrals:
    1
    Sythe Gold:
    1,458
    Discord Unique ID:
    369860055660494849
    Discord Username:
    kombat#5624

    Fast Coins Guru
    $5 USD Donor New

    Sy Herblore Autoclicker

    Nice tool! I don't play rs3 personally, but I reckon it would be useful for people :)
    As it works with coordinates, maybe you can turn it into something more abstract, like an autoclicker for general-use. And people can set it up to do whatever they want? Just a thought :p

    I wish you all the best!
     
    ^ Sypherz likes this.
  5. Unread #3 - Apr 22, 2018 at 4:11 PM
  6. Sypherz
    Joined:
    Dec 13, 2008
    Posts:
    23,745
    Referrals:
    1
    Sythe Gold:
    622
    M
    Sythe's 10th Anniversary

    Sypherz Legend
    $5 USD Donor New Retired Sectional Moderator Competition Winner

    Sy Herblore Autoclicker

    Thanks for the comment my man. Are you an osrs player? I want to make one for both, I'm just starting with rs3 because the antibot seems a little more lenient and I have a main to play on here. My goal was to make a repository where you would be able to choose specialized autoclickers for each skill.

    The general-use autoclicker would be a cool idea, especially with my antiban functions incorporated in. I'll definitely put some thought into it.
     
    ^ PandaBot likes this.
  7. Unread #4 - Apr 22, 2018 at 4:44 PM
  8. Meowth
    Joined:
    Jan 21, 2016
    Posts:
    5,708
    Referrals:
    0
    Sythe Gold:
    1,132
    Discord Unique ID:
    255422411720097792
    Discord Username:
    Geoffrey#2398

    Meowth Life always finds a way.
    Meowth Donor

    Sy Herblore Autoclicker

    Not sure how I ended up here. The script looks nice in action, but is it my impression or is it banking slowly? Could be the speed of the GIF too.

    Another thing I notice is that your mouse seems to 'jump' from coordinate to coordinate to stop on one exact spot in the hitbox as you defined. I reckon it could be better if you could a) make it move to the coordinate in a smoother fashion, and b) maybe autocorrect it's position every so often.

    When I am playing for example, I tend to 'miss' the spot I wanna move my mouse to and have to adjust my position a little bit. Not sure if this could mean anything to your antiban though, I'm not sure how the algorythms work, but anything that could make it more humanlike would be nice right.

    One way to code this as such would be to generate a random number of chance, if it hits this number or below, you overextend or underextend to a slightly bigger hitbox as a first step, to end up in the correct hitbox for the second step. Just a thought and not sure if it could reduce your banrate.
     
    ^ Sypherz likes this.
    Last edited: Apr 22, 2018
  9. Unread #5 - Apr 22, 2018 at 6:22 PM
  10. Sypherz
    Joined:
    Dec 13, 2008
    Posts:
    23,745
    Referrals:
    1
    Sythe Gold:
    622
    M
    Sythe's 10th Anniversary

    Sypherz Legend
    $5 USD Donor New Retired Sectional Moderator Competition Winner

    Sy Herblore Autoclicker

    It does bank very slowly. I need to do some testing before I reduce it because the scroll of cleansing can change the total time it takes to finish an inventory.

    I tried to make it move in a smoother way (ideally a bezier curve) but it turns out it's very difficult to implement. It's definitely on my to-do list though.

    Right now the bot calculates a box around the destination and clicks in a ~3x2 radius of it. I really like the idea of overshooting and undershooting the target every so often, I'll add that soon even though the way I'm imagining it might look pretty unnatural until I work on a smoother mouse movement system.

    Thanks for commenting:)
     
    ^ PandaBot and Meowth like this.
    Last edited: Apr 22, 2018
  11. Unread #6 - Apr 22, 2018 at 6:32 PM
  12. Meowth
    Joined:
    Jan 21, 2016
    Posts:
    5,708
    Referrals:
    0
    Sythe Gold:
    1,132
    Discord Unique ID:
    255422411720097792
    Discord Username:
    Geoffrey#2398

    Meowth Life always finds a way.
    Meowth Donor

    Sy Herblore Autoclicker

    Agreed, I would definitely only do it after you added the smoother transition, I imagine that'll be the hardest thing to get done. Best of luck with it, looks great so far.
     
  13. Unread #7 - Apr 23, 2018 at 10:23 AM
  14. StickTalk
    Joined:
    Nov 22, 2017
    Posts:
    1,570
    Referrals:
    1
    Sythe Gold:
    5,802

    StickTalk Guru

    Sy Herblore Autoclicker

    Nice man!
     
< RS3 Noob | playerauction help! >

Users viewing this thread
1 guest


 
 
Adblock breaks this site