Results 1 to 8 of 8

Thread: QuickWillows

  1. #1
    Join Date
    Aug 2008
    Location
    Kelowna, B.C
    Posts
    188
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default qWillows

    Nothing special, just ground this out to remember SRL's functions for the most part. Thanks to Coh3n (tut) and Harry (read his fishing script).
    No anti-ban movements because I don't believe it helps from my experience with neXus, but in my next (more useful) release anti-ban will be present.
    It's actually great XP when run here:

    Code:
    program qWillows;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}
    
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
    
      Players[0].Name := ''; // Username
      Players[0].Pass := ''; // Password
      Players[0].Nick := ''; // 3-4 lowercase letters from username; used for random event detection
      Players[0].Active := True; // Set to true if you want to use Player 0
      Players[0].Pin := ''; // Leave blank if the player doesn't have a bank pin
    end;
    
    function FindWillows(): Boolean;
    var
    x, y : Integer;
    begin
    repeat
    FindNormalRandoms;
    if InvFull then
    begin
    Wait(200 + Random(100))
    DropAll;
    end;
    Wait(2000+Random(2000))
    FindObjCustom(x, y, ['hop'], [2379075, 4349771, 3231832], 5);
    Mouse(x, y, 5, 5, true);
    until False;
    end;
    
    procedure Bot;
    begin
    SetAngle(true)
    SetRun(true)
    FindWillows;
    end;
    
    begin
      Smart_Server := 152;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
    
      ClearDebug;
      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
      Bot;
    end.
    Last edited by tofurocks; 04-03-2011 at 11:51 PM.

  2. #2
    Join Date
    Feb 2011
    Location
    London
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pretty basic script but like you said it's nothing special
    But you might want to add some Fail safes in there, lot's of good tut's on that in the tutorial section!

  3. #3
    Join Date
    Feb 2011
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Tyvm this is 1st script i got working on simba. Just basic enough

  4. #4
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Wow I made the exact same script (Almost) after reading the tuts!
    Cough great minds? :P

    Just a heads up when you add the anti ban (Least when I did) don't make it move the screen... Mine kept failing hard when I did that it would click other trees

    Anyway I like the script its a great start prob works better than mine too haha




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  5. #5
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by R4nd0m View Post
    Wow I made the exact same script (Almost) after reading the tuts!
    Cough great minds? :P

    Just a heads up when you add the anti ban (Least when I did) don't make it move the screen... Mine kept failing hard when I did that it would click other trees

    Anyway I like the script its a great start prob works better than mine too haha
    If you made one as well then by all means show it off, let people know you're learning and you've made progress! If you're having problems with it just post your questions of issues and I'm willing to be you'll get some quick replies. Don't be afraid to show your work off mate.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  6. #6
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    I want to post something a tad more elegant than a woodcutting script for my first plus in all honesty it chops trees near port sarim then I use a drop method nothing worth posting.

    I want something a bit more original but then again it might just be as generic as an auto miner
    hmm that banks.. from clay to draynor

    Well just thought of something




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  7. #7
    Join Date
    Jun 2006
    Posts
    694
    Mentioned
    0 Post(s)
    Quoted
    31 Post(s)

    Default

    Atleast add FindNormalRandoms;

  8. #8
    Join Date
    Nov 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ill test today :P

Thread Information

Users Browsing this Thread

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

Posting Permissions

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