Results 1 to 14 of 14

Thread: Falador Normal Log Chopper and Banker

  1. #1
    Join Date
    Mar 2007
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default 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(Kinda)! (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.

    SCAR 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.

    Ne1 got sum advice or constructive critisism?

  2. #2
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You NEED to learn radial walk before anybody should use this. if you do more then 5 trips with this you will probably get banned. Learn radial walking using yakmans radial walking aid in the SRL scripts folder. Fakawi has a tutorial on it too you should check out. And this script may get you banned in 2 trips.. you only have a random 1 pixels on each side. its clicking same spot each time. good try, you Need radial walking though.

  3. #3
    Join Date
    Mar 2007
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by JAD View Post
    You NEED to learn radial walk before anybody should use this. if you do more then 5 trips with this you will probably get banned. Learn radial walking using yakmans radial walking aid in the SRL scripts folder. Fakawi has a tutorial on it too you should check out. And this script may get you banned in 2 trips.. you only have a random 1 pixels on each side. its clicking same spot each time. good try, you Need radial walking though.
    With radial road walking in fally it can never find the road color... I tried todo that but it couldnt find the road color... It just stands there for a couple secomnds then says in the debug box it couldnt find the road color and it clicks in a random spot. Should i just get my own color? Maybe i can just add some random pixels and 5t00f

    EDIT: thanks for the feedback

  4. #4
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    try some of the tuts there are plenty that will teach you to do that

    They are sisters...
    Runescape Classic

  5. #5
    Join Date
    Apr 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol so is this thingy ok already?

  6. #6
    Join Date
    May 2007
    Location
    ~middleofnowhereUSA
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    "include file C:\program files\SCAR 2.03\includes\SRL/SRL.scar does not exist
    failed when compiling"

    what do i do now?

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by FityFive Monk View Post
    "include file C:\program files\SCAR 2.03\includes\SRL/SRL.scar does not exist
    failed when compiling"

    what do i do now?
    Download SRL

  8. #8
    Join Date
    May 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Failed when compiling
    Line 79: [Error] (14850:7): Unknown identifier 'CountItemColor' in script

    i'm a lil newbie too scar scripting so en srry for my bad english
    what did i rong can some one help me plz thanks in advance

  9. #9
    Join Date
    May 2007
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I got the same stupid thing!!!

  10. #10
    Join Date
    Jul 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so am I
    and it's making me sad...

  11. #11
    Join Date
    Jul 2007
    Location
    canada Eh...
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Failed when compiling
    Line 78: [Error] (14892:7): Unknown identifier 'CountItemColor' in script

    what now

  12. #12
    Join Date
    Apr 2007
    Location
    Shhhhhhh im right behind you
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im not gona answer you guys this may sound mean but here is y....
    First of all you all posted the same bug in a row like 3 times on the same thread witch is just stupid to do... Second you dont even try to find your own answers. And third its already been said not to use this untill its using radial walk unless you want to get banned. Oh and fourth its an old thread dont bump old threads that died for a reason!

  13. #13
    Join Date
    Jul 2007
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  14. #14
    Join Date
    Aug 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    it kapootid!

    i copi and pasted the script into SCAR but when i did, it didn't like line 78 4 sum reason. o well

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Normal Log Cutter+Banker!
    By AgonY in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 09-02-2007, 12:21 AM
  2. Normal and Oak Draynor Chopper
    By Tails111 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 09-01-2007, 06:27 PM
  3. Varrock Normal Log Chopper and Banker
    By crapkiller in forum RS3 Outdated / Broken Scripts
    Replies: 53
    Last Post: 08-28-2007, 03:58 PM
  4. Normal Ess miner and banker...
    By Gabe in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 08-01-2007, 07:21 AM
  5. drainor normal log cutter banker
    By rjbk1989 in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 05-12-2007, 02:48 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •