Ardy knight thiever script

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

Ardy knight thiever script
  1. Unread #1 - May 28, 2018 at 4:18 AM
  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

    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();
    
     
    ^ Panda and Pendulum like this.
    Last edited: Jun 14, 2018
  3. Unread #2 - Jun 13, 2018 at 2:10 PM
  4. Milotic
    Joined:
    Jun 12, 2015
    Posts:
    6,932
    Referrals:
    11
    Sythe Gold:
    1,414

    Milotic Hero

    Ardy knight thiever script

    ^ Fox likes this.
  5. Unread #3 - Jun 13, 2018 at 2:39 PM
  6. Teeto
    Joined:
    Feb 24, 2015
    Posts:
    3,158
    Referrals:
    0
    Sythe Gold:
    2,865
    Discord Unique ID:
    178542734468972544
    Discord Username:
    Teemo#0792
    Christmas 2016 Gohan has AIDS Snowflake Poképedia (2) Lion King Pokémon Trainer (2) Poké Prizebox

    Teeto Grand Master
    $5 USD Donor New

    Ardy knight thiever script

    WE PRINTING TONIGHT
     
  7. Unread #4 - Jun 13, 2018 at 3:52 PM
  8. Fox
    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

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

    Ardy knight thiever script

    Fowarded to Moderator Weathington, gf son.
     
  9. Unread #5 - Jun 13, 2018 at 4:04 PM
  10. Connor320420
    Joined:
    Mar 17, 2015
    Posts:
    839
    Referrals:
    0
    Sythe Gold:
    77

    Connor320420 Apprentice

    Ardy knight thiever script

    So this script must be pretty fucking good
     
  11. Unread #6 - Jun 13, 2018 at 4:44 PM
  12. Safe
    Joined:
    Dec 25, 2016
    Posts:
    6,843
    Referrals:
    1
    Sythe Gold:
    1,232
    Vouch Thread:
    Click Here
    Discord Unique ID:
    234039940910940161
    Discord Username:
    safe8845
    Nitro Booster Writing Competition Winner Two Factor Authentication User

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

    Ardy knight thiever script

    Looking good!
     
  13. Unread #7 - Jun 14, 2018 at 6:18 AM
  14. milltek
    Joined:
    Oct 16, 2017
    Posts:
    384
    Referrals:
    0
    Sythe Gold:
    369

    milltek Forum Addict

    Ardy knight thiever script

    I wish I knew what I was looking at. lmao
     
  15. Unread #8 - Jun 14, 2018 at 7:54 AM
  16. www
    Joined:
    Oct 21, 2017
    Posts:
    1,802
    Referrals:
    3
    Sythe Gold:
    368
    Dragon Claws

    www Guru
    Ghost Face $25 USD Donor New

    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.
  17. Unread #9 - Jun 14, 2018 at 10:03 AM
  18. 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

    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.
  19. Unread #10 - Jun 14, 2018 at 11:16 AM
  20. milltek
    Joined:
    Oct 16, 2017
    Posts:
    384
    Referrals:
    0
    Sythe Gold:
    369

    milltek Forum Addict

    Ardy knight thiever script

    gonna have to give it a shot then!
     
  21. Unread #11 - Jun 14, 2018 at 3:46 PM
  22. jackthehackm8
    Joined:
    Dec 17, 2014
    Posts:
    3,143
    Referrals:
    0
    Sythe Gold:
    3,161
    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
    March Madness (2) Poképedia Paper Trading Competition Participant SytheSteamer Sythe's 15th Anniversary (2) Dragon Claws May the 4th Be With You Pokémon Trainer (2) Easter 2021 Christmas 2023

    jackthehackm8 Grand Master
    $5 USD Donor New

    Ardy knight thiever script

    thoughts on ban rate?
     
    ^ milltek likes this.
  23. Unread #12 - Jun 14, 2018 at 7:43 PM
  24. RSwilliam
    Joined:
    May 24, 2018
    Posts:
    143
    Referrals:
    0
    Sythe Gold:
    134

    RSwilliam Active Member

    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.
     
  25. Unread #13 - Jun 18, 2018 at 9:56 PM
  26. 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

    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.
  27. Unread #14 - Aug 8, 2018 at 10:26 PM
  28. Pirate
    Joined:
    Aug 14, 2016
    Posts:
    16,624
    Referrals:
    12
    Sythe Gold:
    828
    Vouch Thread:
    Click Here
    Discord Unique ID:
    219503210560225280
    Discord Username:
    Pirate#0069
    Detective Two Factor Authentication User Staff of the Quarter Winner The Glizz Hoover Nitro Booster (3) Dragon Claws Verified Ironman WoW Classic

    Pirate Rainbet.com Casino & Sportsbook

    Ardy knight thiever script

  29. Unread #15 - Aug 8, 2018 at 10:31 PM
  30. 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

    Ardy knight thiever script

    Script was made before that update, so it'd need edited to support that. Maybe someday I'll do that.
     
  31. Unread #16 - Aug 22, 2018 at 8:28 PM
  32. Tears
    Joined:
    Aug 21, 2018
    Posts:
    32
    Referrals:
    0
    Sythe Gold:
    30

    Tears Member
    Banned

    Ardy knight thiever script

    Hve you done this? :D
     
    ^ DrEvil and Pirate like this.
  33. Unread #17 - Aug 25, 2018 at 10:30 AM
  34. Profit Services
    Joined:
    Aug 25, 2018
    Posts:
    29
    Referrals:
    0
    Sythe Gold:
    25

    Profit Services Member
    Banned

    Ardy knight thiever script

    What do I do with that code to make a script?
     
  35. Unread #18 - Aug 25, 2018 at 1:30 PM
  36. 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

    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.
     
  37. Unread #19 - Sep 1, 2018 at 8:29 AM
  38. RocknTroll
    Joined:
    Apr 10, 2016
    Posts:
    45
    Referrals:
    0
    Sythe Gold:
    44

    RocknTroll Member

    Ardy knight thiever script

    My main 116 combat above 1600 days got banned and not even suiciding, so I doubt this argument though.
     
  39. Unread #20 - Sep 1, 2018 at 10:59 AM
  40. 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

    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.
     
    ^ Bolt and chiefs like this.
    Last edited: Sep 1, 2018
< Looking | >

Users viewing this thread
1 guest


 
 
Adblock breaks this site