[SRL]Falador Normal Log Chopper and Banker

Discussion in 'Outdated RS Scripts' started by crapkiller, Apr 9, 2007.

[SRL]Falador Normal Log Chopper and Banker
  1. Unread #1 - Apr 9, 2007 at 7:38 PM
  2. crapkiller
    Joined:
    Jul 19, 2006
    Posts:
    426
    Referrals:
    0
    Sythe Gold:
    0

    crapkiller Forum Addict

    [SRL]Falador Normal Log Chopper and Banker

    Well you may have seen my HORRIBLE Varrock auto chopper and banker. This is NOT like that. This script actually WORKS! (NO WAI). I got 2 succesful runs on it.(Only reason i got 2 instead of 3 or 4 etc. was because it went a little too north and got stuck next to a tree, currently too lazy to fix it, so maybe tommorrow =P) It has anti - randoms and it uses MMouse and Mouse instead of Movemouse
    and clickmouse etc.

    Instructions:
    1)Start a character in front of any bank slot at Falador West bank with an axe equipped.
    2)Drag the crosshair from SCAR to the RS window.
    3)Hit run and watch the first couple seconds of the run(Should go a lil north of gen store and chop there)

    NOTE: it shouldn't chop oak logs but if it gets 1 or 2 its not a big deal.

    Code:
    program New;
    {.include SRL\SRL.scar}
    {.include SRL\SRL\skill\woodcutting.scar}
    
    Var ax, ay, Bankx, Banky, Logz, Loadz, Exp :integer;
    
    Procedure FindRandomz;
    begin
    FindEnt(1452064);
    FindHead;
    FindNormalRandoms;
    FindLamp('Woodcutting');
    if (FindFight) then
    begin
    RunAwayDirection('N');
    Wait(10000+random(2000));
    RunBack;
    end;
    end;
    
    Procedure Walk2trees;
    begin
    SetRun(True);
    if(FindSymbol(x, y, 'Water')) then
    begin
    Mouse(x, y, 1, 1, True);
    Wait(1000);
    Flag;
    end;
    if(FindSymbol(x, y, 'Water') = False) then
    begin
    Mouse(666, 55, 1, 1, True);
    Wait(1000);
    Flag;
    FindSymbol(x, y, 'Water');
    Mouse(x, y, 1, 1, True);
    Wait(1000);
    Flag;
    end;
    FindSymbol(x, y, 'Store');
    Mouse(x, y, 1, 1, True);
    Flag;
    Mouse(646, 50, 1, 1, True);
    Flag;
    Mouse(646, 50, 1, 1, True);
    Flag;
    end;
    
    
    Procedure Chop;
    begin
    ax := 0;
    ay := 0;
    repeat
    If(FindColorTolerance(x, y, 1452064, ax + 5 + random(5), ay + 5 + random(5), 513, 333, 10)) then
    MMouse(x, y, 1, 1);
    Wait(100);
    If(FindColorTolerance(x, y, 1452064, ax + 5 + random(5), ay + 5 + random(5), 513, 333, 10) = False) then
    begin
    ax := 0;
    ay := 0;
    KeyDown(VK_left);
    Wait(500);
    KeyUp(VK_left);
    end;
    Wait(100);
    If(IsUpText('Tree') = False) then
    GetMousePos(ax, ay);
    Wait(100);
    until(IsUpText('Tree'))
    Mouse(x, y, 1, 1, True);
    FindRandomz;
    end;
    
    Procedure NextTreeYet;
    begin
    ay := 0;
    ax := CountItemColor(65536)
    while (CountItemColor(65536) = ax)do
    begin
    wait(500);
    ay := ay + 1
    If (ay >= 20) then Chop;
    end;
    FindRandomz;
    end;
    
    Procedure Walk2Bank;
    begin
    PerfectNorth;
    if(FindSymbol(x, y, 'Store')) then
    Mouse(x, y, 1, 1, True);
    repeat
    If(FindSymbol(x, y, 'Store') = False) then
    Mouse(649, 107, 1, 1, True);
    Flag;
    Until(FindSymbol(x, y, 'Store'));
    Mouse (x, y, 1, 1, True);
    Flag;
    FindSymbol(x, y, 'Water');
    Mouse(x, y, 1, 1, True);
    Flag;
    Mouse(644, 122, 1, 1, True);
    Flag;
    FindSymbol(x, y, 'bank');
    Mouse(x, y, 1, 1, True);
    Flag;
    end;
    
    Procedure Bank;
    begin
    Bankx := 249
    Banky := 175
    repeat
    MMouse(Bankx, Banky, 1, 1);
    Banky := Banky + 10;
    Wait(100);
    If (Banky > 363) then
    begin
    Bankx := Bankx + 50;
    Banky := 175;
    end;
    Until(IsUpText('Bank booth') = True);
    Mouse(Bankx, Banky, 1, 1, False);
    Wait(1000+Random(500));
    ClickOption('Use-quickly', 1);
    Wait(3000+random(500));
    FindColorTolerance(x, y, 3232619, 566, 219, 732, 460, 5);
    Mouse(x, y, 1, 1, False);
    PopUp('Store All');
    Wait(200+random(500));
    CloseBank;
    end;
    
    Procedure Proggyreport;
    begin
    Logz := Loadz * 28
    Exp := Logz * 25
    Writeln('|---------------------------------------------|');
    Writeln('|Worked For : ' + TimeRunning)
    Writeln('|Chopped and Banked '+IntToStr(Loadz) + ' Loads');
    Writeln('|Chopped and Banked '+ IntToStr(Logz) + ' Logs');
    Writeln('|Gained Approx. ' + IntToStr(Exp) + ' XP');
    Writeln('|---------------------------------------------|');
    end;
    
    begin
    SetUpSRL;
    ActivateClient;
    Wait(3000);
    FindAxeHeadColor;
    repeat
    PerfectNorth;
    Walk2Trees;
    While(InvFull = False) do
    begin
    Chop;
    NextTreeYet;
    end;
    Walk2Bank;
    Bank;
    Loadz := Loadz + 1;
    ProggyReport;
    until(false);
    end.
     
  3. Unread #2 - Apr 10, 2007 at 12:39 AM
  4. blade me not
    Referrals:
    0

    blade me not Guest

    [SRL]Falador Normal Log Chopper and Banker

    very cool :D
     
  5. Unread #3 - Apr 10, 2007 at 12:18 PM
  6. Demon Within
    Joined:
    Feb 15, 2007
    Posts:
    223
    Referrals:
    0
    Sythe Gold:
    0

    Demon Within Active Member

    [SRL]Falador Normal Log Chopper and Banker

    Runs for... How long?
     
  7. Unread #4 - Apr 10, 2007 at 8:09 PM
  8. crapkiller
    Joined:
    Jul 19, 2006
    Posts:
    426
    Referrals:
    0
    Sythe Gold:
    0

    crapkiller Forum Addict

    [SRL]Falador Normal Log Chopper and Banker

    Well i got 2 succesful runs before it unluckily got stuck right next to a tree =(. I can hopefully get atleast 5 runs. I already have a few ideas about fixing the problem but it should be pretty rare and stiill work nicely. I will test in a bit to see what i can get.

    NOTE: did anyone try it?
     
  9. Unread #5 - Apr 10, 2007 at 9:01 PM
  10. skynyrd
    Referrals:
    0

    skynyrd Guest

    [SRL]Falador Normal Log Chopper and Banker

    umm how do i use it im a nooby
     
  11. Unread #6 - Apr 12, 2007 at 9:35 PM
  12. fireflame
    Joined:
    Mar 5, 2007
    Posts:
    25
    Referrals:
    0
    Sythe Gold:
    0

    fireflame Member

    [SRL]Falador Normal Log Chopper and Banker

    No anti-ban? Get stuck in a tree half the time?

    I will probably use it if you fix those
     
  13. Unread #7 - Apr 13, 2007 at 10:07 AM
  14. Samuster
    Referrals:
    0

    Samuster Guest

    [SRL]Falador Normal Log Chopper and Banker

    Well, im a n00b with scripts, so woluld someone avtually help me.
    It say's like this:
    Include file C:\SCAR 2.03\includes\SRL\SRL.scar does not exist.
    Include file C:\SCAR 2.03\includes\SRL\SRL\skill\woodcutting.scar does not exist.

    So how and where do i get those SCAR files?
     
  15. Unread #8 - Apr 13, 2007 at 12:08 PM
  16. Fourscape
    Joined:
    Jan 24, 2007
    Posts:
    118
    Referrals:
    0
    Sythe Gold:
    0

    Fourscape Active Member

    [SRL]Falador Normal Log Chopper and Banker

    Your script is very unreliable. Work alot harder.
     
  17. Unread #9 - Apr 13, 2007 at 3:11 PM
  18. doomslayer2021
    Referrals:
    0

    doomslayer2021 Guest

    [SRL]Falador Normal Log Chopper and Banker

    nicez
     
  19. Unread #10 - Apr 13, 2007 at 3:52 PM
  20. -------owned-------
    Joined:
    Jan 27, 2007
    Posts:
    1,225
    Referrals:
    0
    Sythe Gold:
    0

    -------owned------- Guru
    Banned

    [SRL]Falador Normal Log Chopper and Banker

    www.srl-forums.com or autofighter.org
     
  21. Unread #11 - Apr 13, 2007 at 3:58 PM
  22. crapkiller
    Joined:
    Jul 19, 2006
    Posts:
    426
    Referrals:
    0
    Sythe Gold:
    0

    crapkiller Forum Addict

    [SRL]Falador Normal Log Chopper and Banker

    You need SRL. Download at Villu-Reborn.com Somewhere on that website

    NOTE:
    Well....... Becuase i got 2 succesful runs thats atleast 56 logs. Which means were clicking a tree 56 times. So, it happened once out of 56 times. That is NOT half not even close. That is less than 2%. Also 2 runs isn't enough to draw a conclusion from. What if it was just pure bad luck eh?

    Fourscape: What is unreliable? Which part? the chopping? the walking? the whole thing? be specific dont just try to make me feel bad. This is my 3rd script. It is purely for learning purposes for me. I just wanted advice.
     
  23. Unread #12 - May 19, 2007 at 2:45 AM
  24. Xtra C l I P
    Joined:
    May 15, 2007
    Posts:
    124
    Referrals:
    0
    Sythe Gold:
    0

    Xtra C l I P Active Member
    Banned

    [SRL]Falador Normal Log Chopper and Banker

    it says this when i try run it
    Line 78: [Error] (15198:7): Unknown identifier 'CountItemColor' in script

    Please help me!
     
  25. Unread #13 - Jul 6, 2007 at 10:36 PM
  26. stacked
    Joined:
    May 11, 2007
    Posts:
    190
    Referrals:
    0
    Sythe Gold:
    0

    stacked Active Member

    [SRL]Falador Normal Log Chopper and Banker

    i'm getting the same thing as Xtra C l I P
     
  27. Unread #14 - Jul 6, 2007 at 10:41 PM
  28. Town
    Joined:
    Jan 21, 2007
    Posts:
    3,776
    Referrals:
    3
    Sythe Gold:
    5

    Town Grand Master
    Scar Programmers

    [SRL]Falador Normal Log Chopper and Banker

  29. Unread #15 - Jul 6, 2007 at 10:54 PM
  30. stacked
    Joined:
    May 11, 2007
    Posts:
    190
    Referrals:
    0
    Sythe Gold:
    0

    stacked Active Member

    [SRL]Falador Normal Log Chopper and Banker

    oh oops i was using 3.10
     
  31. Unread #16 - Jul 6, 2007 at 11:00 PM
  32. stacked
    Joined:
    May 11, 2007
    Posts:
    190
    Referrals:
    0
    Sythe Gold:
    0

    stacked Active Member

    [SRL]Falador Normal Log Chopper and Banker

    i tryed doing what you said but it still found an th same error
     
  33. Unread #17 - Aug 7, 2007 at 12:41 PM
  34. xyclon
    Referrals:
    0

    xyclon Guest

    [SRL]Falador Normal Log Chopper and Banker

    when i try this i get an error message, i think i need an SRL or something, and since im new on this idk what to do, i hope maby some of you could tell me or send me a turtorial etc.
     
  35. Unread #18 - Dec 21, 2007 at 6:22 PM
  36. vnoax
    Referrals:
    0

    vnoax Guest

    [SRL]Falador Normal Log Chopper and Banker

    Please help Ive Tried Everything ubove and have had all of those error mesages but now i just get "Line 15: [Error] (14676:1): Unknown identifier 'RunAwayDirection' in script
    Failed when compiling"
     
  37. Unread #19 - Dec 28, 2007 at 9:26 AM
  38. cuja ur mum
    Referrals:
    0

    cuja ur mum Guest

    [SRL]Falador Normal Log Chopper and Banker

    it doesnt work!!!! all it does is drop it!!!!!!!!!! man make 1 that does bank!!!! plz!!!
     
< [PROGRAM]RKFallywoodcutter+Banker | my auto-alcher with randoms.... >

Users viewing this thread
1 guest


 
 
Adblock breaks this site