Adblock breaks this site

Ardy knight thiever script

Discussion in 'Sythe Lib Archive' started by Program, May 28, 2018.

  1. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    This script is for trapped knights in the room in ardy where you can click the knight repeatedly. It eats cakes for you once your health gets too low.

    I may or may not have gotten 200m thieving using this 0.o (initially for cake eating, simplified for after 95)

    You might have to tweak the mouse position depending on your camera angle since i set mine up how i liked it. Or try and match my camera angle by trial and error.

    Code:
    SetVirtualMouseJavaModeOn();
    if (SetWindow("Old School") == ""){Die("Could not find runescape");}while(SelectInnerWindow("SunAwtCanvas")){}
    // SetVirtualInputsOff();
    
    global targetHoverText = "PickpocketKnight"; // What text should show up when hovering this target? No spaces, hyphens, etc. Can be a subset of the characters, like "TalktoGrand".
    global targetX = 164; // Put the X position of where you want to click here.
    global targetY = 129; // Put the Y position of where you want to click here.
    global minClickInterval = 300; // Minimum interval before clicking again. In Milliseconds.
    global maxClickInterval = 700; // 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);
    
    global font3 =  LoadFontFromBitmap(LoadBitmapFromString(
        "0001Q05|{&LRx4sF+o`-Q&~)QKpX%8$iM)=000260Pq3<C#WD+)wV??7?F_BCT$uplp7NylVfP" +
            "8ji9946m3S0vdBc*G-?nuXf$IOqKhPzB1SB+q9$NtB`DBA2q?h{l!+wGZDO^ni@744C`cwdAPx" +
            "Wk", 0xff00ff, true), "1234567890", 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 words(word) {
        for (var i = 0; i < 5; ++i) {
            Scrape(0,0,300,100);
            var l = 0;
            var x = 0; var y = 0;
            var s = OCRUsingFont(x, y, font1, 0, 0, 300, 100, 0, 30, 50, 0);
            if (Contains(l, word, s)) {
                return true;
            }
            Sleep(1);
        }
        return false;
    }
    
    def eatFood() {
        var x = 0;
        var y = 0;
        Sleep(100);
        Scrape();
        if(FindColor(x, y, 15987185, 550, 207, 737, 464, 10)) {
            ClickMouse(x,y,1);
        } else {
            Exit(0);
        }
    
        return;
    }
    
    def AutoClick() {
        var x = 0;
        var y = 0;
        MoveMouse(targetX, targetY);
        while(true) {
            Scrape();
            if(to_int(OCRUsingFont(x, y, font3, 515, 50, 544, 70, 0, 30, 50, 0)) >= 4) {
                MoveMouse(targetX, targetY);
                if(words("PickpocketKnight")) {
                    ClickMouse(targetX, targetY, 1);
                }
            } else {
                while(to_int(OCRUsingFont(x, y, font3, 515, 50, 544, 70, 0, 30, 50, 0)) <= 17) {
                    eatFood();
                    Sleep(1000);
                }
            }
            Sleep(RandomInt(minClickInterval, maxClickInterval));
        }
    }
    
    AutoClick();
    
     
    Last edited: Jun 14, 2018
    Panda and Pendulum like this.
  2. Milotic

    Milotic Hero

    Joined:
    Jun 12, 2015
    Posts:
    6,932
    Referrals:
    11
    Sythe Gold:
    1,414
    Ardy knight thiever script

    Fox likes this.
  3. Teeto

    Teeto Grand Master
    $5 USD Donor New

    Joined:
    Feb 24, 2015
    Posts:
    3,191
    Referrals:
    0
    Sythe Gold:
    2,898
    Discord Unique ID:
    178542734468972544
    Discord Username:
    Teemo#0792
    Christmas 2016 Gohan has AIDS Snowflake Poképedia (2) Lion King Pokémon Trainer (3) Poké Prizebox
    Ardy knight thiever script

    WE PRINTING TONIGHT
     
  4. Fox

    Fox Runestake.com - The #1 Runescape Game Site
    Relativity Donor

    Joined:
    Feb 13, 2016
    Posts:
    12,650
    Referrals:
    12
    Sythe Gold:
    7,756
    Vouch Thread:
    Click Here
    Discord Unique ID:
    1005477784623259769
    Discord Username:
    Fox#9000
    Ardy knight thiever script

    Fowarded to Moderator Weathington, gf son.
     
  5. Connor320420

    Connor320420 Apprentice

    Joined:
    Mar 17, 2015
    Posts:
    839
    Referrals:
    0
    Sythe Gold:
    77
    Ardy knight thiever script

    So this script must be pretty fucking good
     
  6. Safe

    Safe Safe & Sound ~ Discord: SAFE#8845
    $200 USD Donor New

    Joined:
    Dec 25, 2016
    Posts:
    7,235
    Referrals:
    1
    Sythe Gold:
    20
    Vouch Thread:
    Click Here
    Discord Unique ID:
    234039940910940161
    Discord Username:
    safe8845
    Nitro Booster Writing Competition Winner Two Factor Authentication User
    Ardy knight thiever script

    Looking good!
     
  7. milltek

    milltek Forum Addict

    Joined:
    Oct 16, 2017
    Posts:
    384
    Referrals:
    0
    Sythe Gold:
    369
    Ardy knight thiever script

    I wish I knew what I was looking at. lmao
     
  8. www

    www Guru
    Ghost Face $25 USD Donor New

    Joined:
    Oct 21, 2017
    Posts:
    1,835
    Referrals:
    3
    Sythe Gold:
    400
    Dragon Claws
    Ardy knight thiever script

    It stops clicking if the knight is out of the spot? So it doesn't start clicking ladders etc..
     
    milltek likes this.
  9. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    Yeah, or if the hero walks in the way it won’t kill itself on it
     
    PandaBot and www like this.
  10. milltek

    milltek Forum Addict

    Joined:
    Oct 16, 2017
    Posts:
    384
    Referrals:
    0
    Sythe Gold:
    369
    Ardy knight thiever script

    gonna have to give it a shot then!
     
  11. jackthehackm8

    jackthehackm8 Grand Master
    $5 USD Donor New

    Joined:
    Dec 17, 2014
    Posts:
    3,210
    Referrals:
    0
    Sythe Gold:
    3,237
    Vouch Thread:
    Click Here
    Discord Unique ID:
    466434596272340992
    Discord Username:
    jackthehackm8
    Creeper Diamond Diamond Pickaxe Runescape Participant Spam Forum Participant Community Participant Donor Lounge Participant Writing Competition Winner
    Rio 2016 Paper Trading Competition Participant March Madness (3) Poképedia SytheSteamer Sythe's 15th Anniversary (2) Dragon Claws May the 4th Be With You Pokémon Trainer (3) Secret Santa
    Member of the Quarter Winner
    Ardy knight thiever script

    thoughts on ban rate?
     
    milltek likes this.
  12. RSwilliam

    RSwilliam Active Member

    Joined:
    May 24, 2018
    Posts:
    143
    Referrals:
    0
    Sythe Gold:
    134
    Ardy knight thiever script

    I imagine it wouldn't have a higher ban rate than an auto clicker would, Just be in a populated world where he is already trapped and you should go unnoticed. Keep watching it so if it breaks you aren't standing there looking like a bot and you should be good.
     
  13. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    I've found that my bans are directly correlated to the age and maturity of the account I'm botting. It seems to me they catch me if they manually look at my account or monitor it heavily, which seems to happen mostly on new accounts.

    Old, mature, accounts seem to be able to suicide bot without catching a ban. New accounts I make and bot on get banned frequently.
     
    Sun, Pirate and PandaBot like this.
  14. Pirate

    Pirate

    Joined:
    Aug 14, 2016
    Posts:
    16,733
    Referrals:
    14
    Sythe Gold:
    987
    Vouch Thread:
    Click Here
    Discord Unique ID:
    219503210560225280
    Discord Username:
    Pirate#0069
    Detective Two Factor Authentication User Staff of the Quarter Winner St. Patrick's Day 2024 Hoover The Glizz Verified Ironman Dragon Claws Nitro Booster (3)
    WoW Classic
    Ardy knight thiever script

  15. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    Script was made before that update, so it'd need edited to support that. Maybe someday I'll do that.
     
  16. Tears

    Tears Member
    Banned

    Joined:
    Aug 21, 2018
    Posts:
    32
    Referrals:
    0
    Sythe Gold:
    30
    Ardy knight thiever script

    Hve you done this? :D
     
    DrEvil and Pirate like this.
  17. Profit Services

    Profit Services Member
    Banned

    Joined:
    Aug 25, 2018
    Posts:
    29
    Referrals:
    0
    Sythe Gold:
    25
    Ardy knight thiever script

    What do I do with that code to make a script?
     
  18. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    I haven't.

    There's guides in this section. Follow them and if you need help then ask your specific questions regarding your issue.
     
  19. RocknTroll

    RocknTroll Member

    Joined:
    Apr 10, 2016
    Posts:
    45
    Referrals:
    0
    Sythe Gold:
    44
    Ardy knight thiever script

    My main 116 combat above 1600 days got banned and not even suiciding, so I doubt this argument though.
     
  20. Program

    Program Formerly known as Andy Samberg
    Retired Sectional Moderator

    Joined:
    Sep 17, 2015
    Posts:
    5,003
    Referrals:
    0
    Sythe Gold:
    902
    Discord Unique ID:
    171517906276843520
    Discord Username:
    FuukinAndy #6867
    Ardy knight thiever script

    When speaking about trends, individual data points don’t mean much.

    And I was talking about SytheLib, I’ll bet you were using a standard bottingclient.
     
    Last edited: Sep 1, 2018
    Bolt and chiefs like this.
< Looking | >


 
 
Adblock breaks this site