Poll: Should i make a new version?

Page 1 of 2 12 LastLast
Results 1 to 25 of 37

Thread: Auto Wood Cutter

  1. #1
    Join Date
    Sep 2007
    Location
    Sweden
    Posts
    91
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Wood Cutter

    Hi im on my Fourth Project
    it's took time for all to work
    but whit the_rs_monkey guide it worked! Thnx alot for u guide
    Here is the code its as hes but this is just a BETA i will fix some new stuffs in v.1

    Coming in Version 1
    - Anti Ban
    - Auto Responder
    - Find Randoms
    - Invrandoms

    If i need to add something just pm me and i will try!

    Here is the code
    Code:
    {.Script Info:
    # ScriptName  = TreeChopper
    # Author      = Hasslarn
    # Description = A AutoChopper
    # Version     = BETA
    # Date        = 22/9 16;34
    # Comments    = Thanx to The_Rs_monkey guide!
    /Script Info}
    program New;
    {.include SRL/SRL.scar}
    
    const
      LoadsPerPlayer = 10; //Amounts of loads per player before switching.
      TreeColor = 0;       //Fill in the treecolor here.
      WaitPerTree = 5000; //the time to wait while we are chopping the tree in Miliseconds.
    procedure DeclarePlayers;
    begin
      SetupPlayers;
    
      Players[0].Name := 'Player Name';
      Players[0].Pass := 'Player password';
      Players[0].Nick := '3-5 words of the name';
      Players[0].Active := True;
    
    
      Players[0].Name := 'Player Name';
      Players[0].Pass := 'Player password';
      Players[0].Nick := '3-5 words of the name';
      Players[0].Active := True;
    
    
      Players[0].Name := 'Player Name';
      Players[0].Pass := 'Player password';
      Players[0].Nick := '3-5 words of the name';
      Players[0].Active := True;
    
      LoadPlayerArray;
    end;
    
    procedure ChopTree;
    var
      x, y, MyMark : integer;
    begin
      if not Loggedin then Exit;
      MarkTime(MyMark);
      repeat
        if FindObj(x, y, 'hop', TreeColor, 30) then
        begin
          Mouse(x, y, 0, 0, False);
          if ChooseOption('hop') then
          begin
            //increase 1 to the total tree chop - if we had one
            Wait(WaitPerTree);
            Exit; //We clicked chop, now we can exit this procedure.
          end;
        end;
        if TimeFromMark(MyMark) > (2 * 60 * 100) then
        begin
          Logout;
          Exit;
        end;
      until false
    end;
    
    begin
      SetupSRL;
      DeclarePlayers;
      if LoggedIn then Logout;
      LoginPlayer;
      repeat
        ChopTree;
        if InvFull then
        begin
          DropToPosition(2, 28);
          Inc(Players[CurrentPlayer].Banked);
          if Players[CurrentPlayer].Banked mod LoadsPerPlayer = 0 then
          begin
            NextPlayer(True);
          end;
        end;
        if not Loggedin then NextPlayer(False);
      until false
    end.

    or just download it....

  2. #2
    Join Date
    Sep 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    question, is it normal tree chopper?? what does it cut?

  3. #3
    Join Date
    Sep 2007
    Location
    Sweden
    Posts
    91
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    evry tree

    Code:
    TreeColor = 0;       //Fill in the treecolor here.
    just get the treecolor

  4. #4
    Join Date
    Aug 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmmmm, i'll test this script out and edit my post when done

  5. #5
    Join Date
    Sep 2007
    Location
    USA
    Posts
    126
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice script needs a little work on the randoms tho

  6. #6
    Join Date
    Sep 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I found it a good script. oblivious to randoms though.

  7. #7
    Join Date
    Sep 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am having trouble with line 31

    And then i will just complitle delete it and it will say that the word END; is messed up

  8. #8
    Join Date
    Sep 2007
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ill try this script, looks like a good one

  9. #9
    Join Date
    Sep 2007
    Location
    Sweden
    Posts
    91
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bmbm873 View Post
    i am having trouble with line 31

    And then i will just complitle delete it and it will say that the word END; is messed up
    Check at this Tut for errors
    http://www.villavu.com/forum/showthr...?t=6413?t=7421
    made by jud

    it will help you its easy 2

  10. #10
    Join Date
    Sep 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you very much Hasslarn see im just a little new to all this LOL

  11. #11
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    you should have some isuptext somewhere so that it only cuts certain trees, so players dont get stuck clicking on a tree where they cant cut...

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  12. #12
    Join Date
    Sep 2007
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    when getting attacked for whatever reason from a random, does it run away?

  13. #13
    Join Date
    Sep 2007
    Location
    Sweden
    Posts
    91
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    pain im my comp is fucked up right now but i think it will run away

  14. #14
    Join Date
    Sep 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nevermind i fixed it, very nice

  15. #15
    Join Date
    Sep 2007
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what if i wanna just use 1 player how do i do that

  16. #16
    Join Date
    Sep 2007
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am really new to all of this shit.
    i mean. what to put in player for it to work.
    or whats your settings?

  17. #17
    Join Date
    Sep 2007
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    2 questions...where does it cut and i read thru the script but didnt see anything about banking.

  18. #18
    Join Date
    Sep 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i cant open it !! how can i just open it from my desktop?using what program?

  19. #19
    Join Date
    Sep 2007
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ncie script XD

  20. #20
    Join Date
    Sep 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i allways got these problem when i try to start an script:
    Include file C:\Program Files\SCAR 3.12\includes\SRL\SRL.scar does not exist.
    Failed when compiling

    whats that mean? that i need download somthing that i havent? ;/

  21. #21
    Join Date
    Oct 2007
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can sum1 tell me how to sue scar or sum thing -.- i opened the script then pressed play da lil green arrow and nothin happened do i gotta do sum thin firsT?

  22. #22
    Join Date
    Sep 2006
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice script. I do think you should update it, to work with randoms.

  23. #23
    Join Date
    Oct 2007
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Packo, have you downloaded srl 4.0?

    ~ LOL? ~

  24. #24
    Join Date
    Sep 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ofcs i have, :/

  25. #25
    Join Date
    Sep 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    aw, ops that problem was befor i downloaded an SCRL, srry guy's.

    my problem fixed.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My Varock Auto Wood Cutter/banker ~yews~
    By sinocopa 1 in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 11-29-2007, 03:56 PM
  2. Wood Cutter
    By Jacob in forum First Scripts
    Replies: 4
    Last Post: 10-18-2007, 02:30 AM
  3. IS there a premade auto wood cutter?
    By Hacksarefun in forum OSR Help
    Replies: 3
    Last Post: 09-14-2007, 11:59 PM
  4. Wood cutter
    By mooman001 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 07-15-2007, 11:14 PM

Posting Permissions

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