Results 1 to 9 of 9

Thread: Seer's Maple Basher

  1. #1
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Seer's Maple Basher

    Rev. 31 Srl 4

    My first ever script, I am still working on it.

    What it does:
    Chops and Banks Maple Logs in Seers Village
    Solves Normal Randoms
    Antiban



    Instructions:
    Choose a low populated world
    Start either in bank or at trees (behind bank)
    Have axe equipped
    Press play!





    My Test Proggy:

    ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
    Time Running : 47 Minutes and 53 Seconds
    Loads : 11
    Thanks For Using Seers Maple Basher
    `````````````````````````````````````````````````
    Successfully executed
    (Stopped It Myself)



    Will Be Updated Frequently.

    Last Update-

    v1.1
    Added-
    Ent finding
    AntiRandom and AntiBan
    Improved Chopping






    Enjoy

  2. #2
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    why don't you use FindSymbol when you walk to trees but you do when you go bank?

    also, your missing some waits.. I'll let you find those..

    and you call MainLoop; in your MainLoop; proc? >.> then again in the.. other main loop.. might wanna change that (dunno if it will mess it up, just kinda sloppy)

    and also, you shouldn't do until false; do until (loads=loadstodo) and have loadstodo in const or something

    looks nice tho

    (can't believed you used TPA in your first script )

  3. #3
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea i need help getting up to standard =p
    But like i said its my first
    If you have anything to contribute your welcome to.

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    your whole ChopTree proc is very confusing

    and a lot of your cases aren't needed

  5. #5
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This? I know..

    if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
    begin
    case random(2) of
    0:
    begin
    Mouse(x, y, 0, 0, false);
    ChooseOption('hop')
    begin
    case random(2) of
    0:
    begin
    wait(750+random(750));
    HoverSkill('woodcutting', False);
    end;
    1:
    RandomMovement;
    end;
    end;
    end;
    1:
    Mouse(x, y, 0, 0, true);
    end;
    begin;
    RandomMovement;
    end;



    I tried to do something like this

    if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
    begin
    Mouse(x, y, 0, 0, false);
    ChooseOption('hop')
    begin
    wait(750+random(750));
    Antiban;
    end;

    It kept saying unknown identifier

    So i had to use my antiban procedure inside my chopping...

    I need help lol

  6. #6
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Sir_Oober View Post
    This? I know..

    if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
    begin
    case random(2) of
    0:
    begin
    Mouse(x, y, 0, 0, false);
    ChooseOption('hop')
    begin
    case random(2) of
    0:
    begin
    wait(750+random(750));
    HoverSkill('woodcutting', False);
    end;
    1:
    RandomMovement;
    end;
    end;
    end;
    1:
    Mouse(x, y, 0, 0, true);
    end;
    begin;
    RandomMovement;
    end;



    I tried to do something like this

    if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
    begin
    Mouse(x, y, 0, 0, false);
    ChooseOption('hop')
    begin
    wait(750+random(750));
    Antiban;
    end;

    It kept saying unknown identifier

    So i had to use my antiban procedure inside my chopping...

    I need help lol
    you probably had your choptree procedure above your antiban... just make sure that the antiban is above it...
    SCAR Code:
    procedure AntiBan;
    begin
      stuffhere;
    end;

    procedure ChopTree;

    begin;

      if not(LoggedIn) then Exit;
        repeat
        if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
        begin
          Mouse(x, y, 0, 0, false);
          ChooseOption('hop')
          begin
            wait(750+random(750));
            Antiban;
            FindNormalRandoms;
          end;
        end;
        Until  not IsUpText('aple') or (InvFull);
      Until(invfull);
    end;
    you could make a custom tpa... it would work way better!

  7. #7
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the help i got the anti-ban working now =]



    Quote Originally Posted by mormonman View Post
    you probably had your choptree procedure above your antiban... just make sure that the antiban is above it...
    SCAR Code:
    procedure AntiBan;
    begin
      stuffhere;
    end;

    procedure ChopTree;

    begin;

      if not(LoggedIn) then Exit;
        repeat
        if FindObjTPA(x, y, 2901367, 20, 2, 15, 25, 10, ['aple', 'Mapl', 'Maple']) then
        begin
          Mouse(x, y, 0, 0, false);
          ChooseOption('hop')
          begin
            wait(750+random(750));
            Antiban;
            FindNormalRandoms;
          end;
        end;
        Until  not IsUpText('aple') or (InvFull);
      Until(invfull);
    end;
    you could make a custom tpa... it would work way better!

  8. #8
    Join Date
    Oct 2006
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol im dumb, how do i download this script?

  9. #9
    Join Date
    Mar 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Denman View Post
    lol im dumb, how do i download this script?
    Correct sir! Click the link to download and place it where you want it, open it, set it up, run it.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Willowz Basher
    By [S]paz in forum RS3 Outdated / Broken Scripts
    Replies: 15
    Last Post: 03-22-2008, 01:07 PM
  2. Anybody mind scripting me a seer's maple chopper?
    By phan94 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 09-19-2007, 04:57 AM
  3. A Seer's Village Flax Spinner!
    By Floor66 in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 09-04-2007, 01:56 PM
  4. Seer's village update? READ!
    By Bourdou! in forum RS has been updated.
    Replies: 15
    Last Post: 08-02-2007, 03:16 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
  •