Results 1 to 15 of 15

Thread: Neegers Willow Cutter&Banker(SRL)

  1. #1
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default Neegers Willow Cutter&Banker(SRL)

    Neegers Willow Cutter&Banker(SRL) V0.6 BETA

    Hey!

    Finally got all to work and posting beta for testing...

    Features:
    *Finds willow trees and cuts them until inv is full, then runs tu bank and banks all itmes and runs back to willows
    *solves randoms

    V0.6
    Added a form!
    Finds willows faster!
    Added report... post them here
    And hopefully it finds an ent =)
    Going to add axe finder soon and some other features

    Start off in Drynor bank(better if ur near the bankbooth)

    So test it and post how it was working

  2. #2
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Standards are not very good.

    Also your commented out players wouldnt work if they were uncommented

    SCAR Code:
    {  Players[1].Name :='';
      Players[1].Pass :='';
      Players[1].Nick :='';
      Players[0].integers[0]  := 69;     ADD AS MANY PLAYERS U WANT!!!
      Players[1].Active:=False;

    You see Players[0].integers[0] := 69; theres your problem.

    Your ent finding wont work, since your only checking once after you click, the ent may appear as you click and about 2-4 seconds after you clicked.

    Failed logging out procedure?

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  3. #3
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Your ent finding wont work, since your only checking once after you click, the ent may appear as you click and about 2-4 seconds after you clicked.
    I realised that, when i tested it going to fix that

    Failed logging out procedure?
    What you mean? That i should make and add:

    SCAR Code:
    procedure FailedLoggingOut;

      begin
        if (not(LoggedIn)) then
          exit;
    else
    Logout;
      end;

  4. #4
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Whats it for? How can it fail logging out? lol.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  5. #5
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Oh lol indeed-i thought you mean something else...

    I think i dont need 1 because it never cuts a willow over 1 minute(i think so), but i could add 1:
    Cuts 30+few randoms secs and if still cutting then it makes a right click or something like this

  6. #6
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    just read through it and found out that it says that once the inventory is full then it exits the script
    SCAR Code:
    repeat
        { MarkTime(CuttingTime);
               Wait(500 + Random(500));
              Randoms;
          if (TimeFromMark(CuttingTime) > 10000+random(1500)) then
          Chop;   }

    If (InvFull) then
    Exit;
    Wait(500 + Random(200));
    Randoms;
    Wait(500 + Random(500));
    if not (IsUpText('illo')) then
                   begin
                     Wait(500 + Random(100));
                     Writeln('Finding new tree')
                     Chop;
                     end;
    until (InvFull);
    Wait(500 + Random(500));
    If (InvFull) then
      Exit;
      else
      Chop;
    end;
    and why is part of it commented out?

  7. #7
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    just read through it and found out that it says that once the inventory is full then it exits the script
    Huh? i dont understand what u mean

    and why is part of it commented out?
    Heh, because i want it so...
    Sry no offence but this scrip is for testng-i dont want to use MarkTime yet.

  8. #8
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by shuttleu View Post
    just read through it and found out that it says that once the inventory is full then it exits the script
    SCAR Code:
    repeat
        { MarkTime(CuttingTime);
               Wait(500 + Random(500));
              Randoms;
          if (TimeFromMark(CuttingTime) > 10000+random(1500)) then
          Chop;   }

    If (InvFull) then
    Exit;
    Wait(500 + Random(200));
    Randoms;
    Wait(500 + Random(500));
    if not (IsUpText('illo')) then
                   begin
                     Wait(500 + Random(100));
                     Writeln('Finding new tree')
                     Chop;
                     end;
    until (InvFull);
    Wait(500 + Random(500));
    If (InvFull) then
      Exit;
      else
      Chop;
    end;
    and why is part of it commented out?
    No offence but, you shouldn't really review scripts if you cant understand what they are doing.

    SCAR Code:
    If (InvFull) then
    Exit;

    Is inside the Chop; procedure. Therefor once the player is full it will drop out of the Chop procedure and go onto the next..

    SCAR Code:
    repeat
        RunToWillows;
        Chop;
        RunToBank;
        Wait(1000 + Random(200));
        Banking;
        Loads:= Loads+1
    until (Loads = Players[CurrentPlayer].integers[0])

    So it will do RunToBank; etc.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  9. #9
    Join Date
    Jun 2007
    Posts
    194
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    welp its not smooth at all. it just says finding rs screen.

  10. #10
    Join Date
    Nov 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it cant find the bank so there for it just looks and looks and then yah thats it and it waits to long to find another willow tree so please fix those 2 bugs behide that it would be awesome.

  11. #11
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    welp its not smooth at all. it just says finding rs screen.
    If it says "Finding RS screen" then open up ur login page and wait few seconds, then it should type in username and password!

    it cant find the bank so there for it just looks and looks and then yah
    Cant find bank? It finds bank icon and then clicks on it-hmm giong to use DTM
    in next version

    thats it and it waits to long to find another willow tree so please fix those 2 bugs behide that it would be awesome.
    hmm... it only cuts trees witch are near to you, therefor i can use more humanlike chopping-waits till it has chopped willow not going to run another if willow still stands... But im going to look that-i have a idea how to make it faster to detect willow

  12. #12
    Join Date
    Jun 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ill try it :d

  13. #13
    Join Date
    Jun 2007
    Posts
    194
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk well it has great ent finding but not very efficient =[

  14. #14
    Join Date
    Nov 2007
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ....

    im going to download and test now doesnt look bad.....!

  15. #15
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Version 0.6 is OUT!!!

    Added a form!
    Finds willows faster!
    Added report... post them here
    And hopefully it finds an ent =)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. al kharid smith-banker & draynor willow cutter-banker
    By rivon in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 01-03-2008, 09:51 AM
  2. JAD Willow - edgevil willow cutter + banker.
    By JAD in forum RS3 Outdated / Broken Scripts
    Replies: 58
    Last Post: 10-08-2007, 05:11 PM
  3. requesting Willow cutter and banker
    By fellixombc in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 08-25-2007, 04:22 PM
  4. Willow cutter/ Banker
    By xxchronic2007xx in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 05-03-2007, 03:23 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
  •