Results 1 to 7 of 7

Thread: TT's Tea sTall sTealer

  1. #1
    Join Date
    Jul 2015
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default TT's Tea sTall sTealer

    This script is simple. You all know that.
    It took me less than an hour after going through the includes and reading some of the awesome guides you guys have on this forums. Hard to come by quality work like that.

    Anyways, enjoy the simplicity =).

    Run it on low settings like most other scripts found here. Nevermind, it won't let me post links. But you all know where it is.
    Everything on low, mostly while standing right next to the Tea stall in Varrock. But you can be anywhere near it, so long as it's visibly on your screen, the bot will do the rest. It does not bank (it's easy to implement if someone really wants it). I've had it goin' since last night and it looks pretty solid. Hope you guys enjoy .

    Code:
    program TTTTT;
    {$DEFINE SMART}
    {$I SRL-6/SRL.simba}
    procedure declarePlayers();
    begin
      setLength(players, 1);
      with players[0] do
      begin
        loginName := 'yo'; // username
        password := 'mama';  //password
        isActive := true;
        world := -1;// set 0 for random -1 for play button 138 for world 138
        isMember := true;
      end
      currentPlayer := 0;
    end;
                       (* Adjusts camera angles to peaks *)
    procedure cameraAngle();
    begin
      mainScreen.setAngle(MS_ANGLE_HIGH);
      minimap.setAngle(0);
    end;
                      (*Antiban used in JC's Crimson script*)
    procedure antiBan(randomNumber: Integer);
    var
      i: Integer;
    begin
      if not isLoggedIn() then
        exit;
    
      i := random(randomNumber);
      if i < 55 then
      begin
        case i of
          0..9:   mouseMovingObject();
          10..20: sleepAndMoveMouse(500);
          21..30: sleepAndMoveMouse(gaussRangeInt(100, 900));
          31..39: begin
                    mouseOffClient(random(4));
                    wait(gaussRangeInt(1000, 5000));
                  end;
          40..41: begin
                    mouseOffClient(random(4));
                    wait(gaussRangeInt(5000, 8000));
                  end;
          42..55: pickUpMouse();
        end;
      end;
    end;
                           (* Picking up the Cup o' Tea *)
    procedure findTea();
    var
      x, y, i: integer;
      FinderTimer: TTimeMarker;
    begin
    writeln('Finding more things to steal');
      if not isLoggedIn() then
      exit;
       finderTimer.start();
       mainscreen.findObject(x, y, 13421241, 6, colorSetting(2, 7.49, 1.54), mainscreen.playerPoint, 7, 25, 50, ['teal', 'from'], MOUSE_LEFT);
       writeln('Found tea-- waiting on antiban. . .');
       antiBan(i);
       wait(gaussRangeInt(7980,8600));
    end;
    
    begin
    clearDebug();
    smartEnableDrawing :=true;
    setupSRL();
    declarePlayers();
    cameraAngle();
    repeat
      repeat
       findTea();
      until tabBackPack.isFull();
      tabBackPack.dropitems(DROP_PATTERN_REGULAR);
    if not isLoggedIn() then
      begin
       players[currentPlayer].login();
       exitSquealOfFortune();
       mainScreen.setAngle(MS_ANGLE_HIGH);
       minimap.setAngle(MM_DIRECTION_NORTH);
      end;
    until players.getActive() < 1;
    end.

  2. #2
    Join Date
    Mar 2013
    Location
    Earth some place
    Posts
    108
    Mentioned
    2 Post(s)
    Quoted
    66 Post(s)

    Default

    Good work man, looks like this is for RS3 because of the SRL-6. This gave me some motivation to make a first script, I am still learning some of the basics but great work you did there man :]
    "We're all someone else to someone else." - Calvin & Hobbes.
    A story of life. Inside everyone are two wolves. It is a terrible fight. One is evil, one is good. Which one wins? The one you feed.

  3. #3
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Kudos for making your first release so early in your career here at SRL. That shows some real potential!

    Also, who is TT?
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  4. #4
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Sweet release, even got a little antiban in there which is nice to see.
    Scripting with ogLib

  5. #5
    Join Date
    Jul 2015
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Kudos for making your first release so early in your career here at SRL. That shows some real potential!

    Also, who is TT?
    Thank you very much =). I have to say thanks to this forums, though. Most everything I need to learn is right smack dab on this site, and a lot of what I've been using to learn comes straight from other people trying to do the same thing. It's awesome, but you already know that x).

    TT is short for tatertot. My name is Taite. You can figure the rest ^^


    Quote Originally Posted by srlMW View Post
    Sweet release, even got a little antiban in there which is nice to see.
    Thanks! It's not mine, though. I saw it in one of JC's hunter scripts and liked the way it played. I'll probably develop my own sooner or later; sooner rather than later, though.
    Last edited by Snoozie; 07-16-2015 at 02:50 AM.

  6. #6
    Join Date
    Feb 2013
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    48 Post(s)

    Default

    Tried it out and it's working fine

  7. #7
    Join Date
    Jul 2015
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Hot dang, glad it works!

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
  •