Results 1 to 16 of 16

Thread: Ultimate All Stall Theiver!!!

  1. #1
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Ultimate All Stall Theiver!!!

    I have a script that will (hopefully) steal from every stall and will drop it. Has multi-player and srl-stats. Please inform me of any bugs that you encounter. Please also post proggies!
    Edit: bug changed!

    SCAR Code:
    program PowerTheif;
    {.include SRL/SRL.scar}
    var HowLoads: integer;
    YourSRLId, YourSRLPass: string;
    procedure DeclarePlayers;
    begin
      YourSRLId := '';
      YourSRLPass := '';
      HowManyPlayers:=2;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer:=0;
     
      Players[0].Name:='';
      Players[0].Pass:='';
      Players[0].Loc:='';
      Players[0].Integers[0]:=2;
      Players[0].Active:=True;
     
      Players[1].Name:='';
      Players[1].Pass:='';
      Players[1].Loc:='';
      Players[1].Integers[0]:=2;
      Players[1].Active:=True;
     
      Players[2].Name:='';
      Players[2].Pass:='';
      Players[2].Loc:='';
      Players[2].Integers[0]:=2;
      Players[2].Active:=True;
    end;
    procedure Progress;
    begin
      Writeln('Player '+ IntToStr(CurrentPlayer) +' has finished correct amount of loads.');
      Writeln('This player is in '+ Players[CurrentPlayer].Loc +'.');
    end;
    function NextPlayerYet: Boolean;
    begin
      if (HowLoads=Players[CurrentPlayer].Integers[0]) then
      begin
        Result:=True;
        NextPlayer(False);
        HowLoads:=0;
        MakeCompass('N');
      end;
      if not LoggedIn then
      begin
        LoginPlayer;
        MakeCompass('N');
      end;
    end;
    procedure AntiBanCut;
    begin
      case 4 of
        1: TypeSend('Woot I love theiving!');
        2: TypeSend('Lvls?');
        3: TypeSend('I love runescape!!!');
      end;
    end;
    procedure Stall;
    var x, y, TimeIt: integer;
    begin
      repeat
        MarkTime(TimeIt);
        if not LoggedIn then Exit;
        if not FindObjCustom(x, y, ['Steal', '-from'], [8822959, 1063502], 4) or (TimeFromMark(TimeIt) > 120000) then
        begin
          NextPlayer(False);
        end else
        begin
          Players[CurrentPlayer].Loc:='Stall';
          FindTalk;
          FindNormalRandoms;
          FindNonInventoryRandoms;
          Mouse(x, y, 1, 1, true);
          AntiBanCut;
          Wait(3000+random(125));
          ReportVars[0]:=1;
        end;
      until(InvFull);
    end;
    procedure DropIt;
    begin
      if not LoggedIn then Exit;
      FindTalk;
      FindNormalRandoms;
      FindNonInventoryRandoms;
      AntiBanCut;
      DropAll;
    end;
    procedure ScriptTerminate;
    begin
      Progress;
      SendSRLReport;
      SRLRandomsReport;
    end;
    begin
      SetupSRL;
      DeclarePlayers;
      YourSRLId := SRLID;
      YourSRLPass := SRLPassword;
      ScriptId:='497';
      ActivateClient;
      Wait(1000);
      repeat
        Stall;
        DropIt;
        HowLoads:=HowLoads+1;
        if NextPlayerYet then
        begin
          Progress;
          SendSRLReport;
          SRLRandomsReport;
        end;
      until( False )
    end.

    Thanks,
    Cut em2 it
    Formerly known as Cut em2 it

  2. #2
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    kwl...ill give it a run..

  3. #3
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Tell me how it goes
    Formerly known as Cut em2 it

  4. #4
    Join Date
    Oct 2007
    Location
    In the center of the USA.
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you really do mean 'every' stall. It just crazily clicks on stalls. And the stop (ctrl+alt+s) shortcut wouldn't work. So I had to alt+ctrl+del it.

    Maybe some click waiting or something? You should make it just for one stall.

  5. #5
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Khazar View Post
    you really do mean 'every' stall. It just crazily clicks on stalls. And the stop (ctrl+alt+s) shortcut wouldn't work. So I had to alt+ctrl+del it.

    Maybe some click waiting or something? You should make it just for one stall.
    I forgot to put in wait
    Formerly known as Cut em2 it

  6. #6
    Join Date
    Mar 2007
    Location
    in Holland
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Khazar View Post
    you really do mean 'every' stall. It just crazily clicks on stalls. And the stop (ctrl+alt+s) shortcut wouldn't work. So I had to alt+ctrl+del it.

    Maybe some click waiting or something? You should make it just for one stall.
    just use then ctrl+f4 that should be good

  7. #7
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    lol myne doesnt do anything hit run...and nothing happens..
    lol...btw i was using it at a tea stall..and i heard it jsut keeps clicking the stal? aint it botlike..lol now im too scared to try it out..

  8. #8
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    it doesn't anymore lol, I changed that.
    Formerly known as Cut em2 it

  9. #9
    Join Date
    Aug 2007
    Location
    USA
    Posts
    370
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    does it work? im gonna try it i guess...
    It must have been the ganja?

  10. #10
    Join Date
    Apr 2007
    Posts
    277
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried and all it did was log me in and then out.
    Current Script: Al-Kharid Fighter and Banker
    Status : Just Started

  11. #11
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Tell me the problem.
    Formerly known as Cut em2 it

  12. #12
    Join Date
    Apr 2007
    Posts
    374
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    click run and it just waits there do nothing.. why:|

  13. #13
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    are you doing it next to the stall?
    Formerly known as Cut em2 it

  14. #14
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    lol this doesnt do anything..

  15. #15
    Join Date
    Jul 2007
    Location
    UK
    Posts
    307
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Maybe because your using the wrong verisons ect..?
    Use scar 3.12 other later verisons are quite buggy.

  16. #16
    Join Date
    Jan 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ill give it a go and poste a proggie in a bit

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [REQ]Auto Cake Stall Stealer
    By Becks in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 04-10-2008, 06:34 AM
  2. Power Stall Stealer
    By Becks in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 04-07-2008, 12:41 AM
  3. Im looking for an actually tea stall theiver that works.....
    By mikevskater in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 01-24-2008, 07:55 PM
  4. Cake stall stealer...
    By Godlike007 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 07-12-2007, 12:35 PM
  5. Tea-stall varrock Thieving
    By warship45 in forum RS3 Outdated / Broken Scripts
    Replies: 11
    Last Post: 11-03-2006, 10:23 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
  •