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

Thread: hermpie,s auto cowhidetanner v 0.1 beta

  1. #1
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default hermpie,s auto cowhidetanner v 0.1 beta

    hermpie,s auto cowhidetanner

    version number : 0.1 beta

    Features
    -multiplayer
    -takes all stuff from bank
    -good failsafes
    -DDTM used (i am so proud)
    -good stuff


    Added in next version
    -crafting option(almost finished)
    -option to tan soft leather to
    - if people request stuff i do it
    -big update

    credits
    -n3ss3s for: helping me learning scripting and if i had questions i could always ask it
    -derek for: almost the same
    -the devs for: for srl include
    -everyone who helped me for: everyhting

    post proggy,s and bugs, thank you!
    ~Hermen

  2. #2
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    attach pl0x

  3. #3
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah i click to fast on the post button and then i dont closed the upload file screen and then it wont add but now you can get it
    ~Hermen

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

    Default

    woah looks pretty good in a couple of weeks apply again and i think u will get in

  5. #5
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks,
    Its not so hard to add a crafting procedure.
    So i will do that fast.
    But should i make it a part of this script or make a other script for it?
    to reduce lagg

    hermpie
    ~Hermen

  6. #6
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    nice stuff, you wanne see a lil piece of mine I'm making?

    EDIT: This is my FindEllis function:
    SCAR Code:
    function FindEllis: boolean;
    var
      EllisTimer: longint;
      c, tol: integer;
    begin
      MakeCompass('n');
      if not(LoggedIn)then Exit;
      c:= 1
      ColorTolerancespeed(2)
      repeat
        tol:= 10
        if (FindObjCustom(x, y, ['lli', 'lis', 'llis'], [5142743, 4813002, 4680899], tol))then
        begin
          Mouse(x, y, 0, 0, false);
          if not(ChooseOption('rade')) then FindEllis;
          repeat
            MarkTime(EllisTimer);
            Wait(300)
            TanningWindow
          until TanningWindow or (TimeFromMark(EllisTimer)>10000)
          if TanningWindow then
          begin
            Writeln('Trading with Ellis!');
            result:= true;
            Exit;
          end else
          if not(TanningWindow) then
          begin
            Writeln('We could not mannage to trade with Ellis.');
            result:= false;
            Exit;
          end;
        end else
        begin
          Writeln('Did not find Ellis ['+inttostr(c)+'/5].');
          tol:= tol+c
        end;
        c:= c+1
      until (c>5) or (result=true)
      if not(result) then Writeln('Could not find Ellis at all!');
      ColorTolerancespeed(1)
    end;
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  7. #7
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you using 3 colors and 3 times a piece of text but mine works always to..
    ~Hermen

  8. #8
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    you using 3 colors and 3 times a piece of text but mine works always to..
    I'm using autocolor too
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  9. #9
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    aw thats mean i dont know how to use it
    ~Hermen

  10. #10
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    aw thats mean i dont know how to use it
    pmed you what, but HSL an dstuff is diff I used ACA, but Sandcolor is changing all the time
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  11. #11
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    This is how I find Ellis in my tanner

    SCAR Code:
    Ellis[1]:= 4681158;
      Ellis[2]:= 5472230;
      Ellis[3]:= 3692188;
      Ellis[4]:= 3758498;

    Function TanAll:Boolean;
    var Dmx, Dmy, Ax, Ay, x, STime, ETime,TTime: integer;
    begin
      MarkTime(STime);
      repeat
        for x:=1 to 4 do
        begin
          if not LoggedIn then Exit;
          MarkTime(ETime);
          if FindColorTolerance(Ax, Ay, Ellis[x], MSX1, MSY1 + 20, MSX2, MSY2, 5) then
          begin
            MMouse(Ax, Ay, 0, 0);
            GetMousePos(Ax, Ay);
            Wait(50);
            if FindColorTolerance(Dmx, Dmy, 318168, 42, 8, 120, 21, 50) then  // Yellow
            begin
              if IsUpText('l') then
              begin
                 Mouse(Ax, Ay, 0, 0, False);
                if not Chooseoption('Trade') then break;
                MarkTime(TTime);
                Repeat
                  FlagFTWait;
                  WWait(1000);
                  if TimeFromMark(TTime) > 15000 then
                  begin
                    Break;
                  End;
                Until TanScreen;
                Mouse(75, 90, 20, 30, False);
                Wait((1000)+Random(250));
                ChooseOption('All');
                TanHides := TanHides + 27;
                ReportVars[0]:=27;
                Result := True;
                Exit;
              end
            end
          end;
        end;
        Wait(100);
        if ETime-STime > 20000 then
        begin
          Mouse(MSCX,MSCY + 50, 2, 2, True);  // crude callib trying to find Ellis
        end;
        x := 1;
      until(ETime-STime > 55000);
    end;
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  12. #12
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you using coords! i using a dtm i got more randomness then wt-fawaki woot :P
    ~Hermen

  13. #13
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by WT-Fakawi View Post
    This is how I find Ellis in my tanner

    SCAR Code:
    Ellis[1]:= 4681158;
      Ellis[2]:= 5472230;
      Ellis[3]:= 3692188;
      Ellis[4]:= 3758498;

    Function TanAll:Boolean;
    var Dmx, Dmy, Ax, Ay, x, STime, ETime,TTime: integer;
    begin
      MarkTime(STime);
      repeat
        for x:=1 to 4 do
        begin
          if not LoggedIn then Exit;
          MarkTime(ETime);
          if FindColorTolerance(Ax, Ay, Ellis[x], MSX1, MSY1 + 20, MSX2, MSY2, 5) then
          begin
            MMouse(Ax, Ay, 0, 0);
            GetMousePos(Ax, Ay);
            Wait(50);
            if FindColorTolerance(Dmx, Dmy, 318168, 42, 8, 120, 21, 50) then  // Yellow
            begin
              if IsUpText('l') then
              begin
                 Mouse(Ax, Ay, 0, 0, False);
                if not Chooseoption('Trade') then break;
                MarkTime(TTime);
                Repeat
                  FlagFTWait;
                  WWait(1000);
                  if TimeFromMark(TTime) > 15000 then
                  begin
                    Break;
                  End;
                Until TanScreen;
                Mouse(75, 90, 20, 30, False);
                Wait((1000)+Random(250));
                ChooseOption('All');
                TanHides := TanHides + 27;
                ReportVars[0]:=27;
                Result := True;
                Exit;
              end
            end
          end;
        end;
        Wait(100);
        if ETime-STime > 20000 then
        begin
          Mouse(MSCX,MSCY + 50, 2, 2, True);  // crude callib trying to find Ellis
        end;
        x := 1;
      until(ETime-STime > 55000);
    end;
    cool looks great, however fawki this is only a finder and extremly under construction
    However, I think I'l just stop scripting or something.
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  14. #14
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you are scared of me
    ~Hermen

  15. #15
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    you are scared of me
    No I'm not, it's just I dunno why I would make it though.
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  16. #16
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i was joking add me on msn your a funny guy
    ~Hermen

  17. #17
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    i was joking add me on msn your a funny guy
    I'm just not in the mood, sorry.
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  18. #18
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    your parents gonna sel your computer/laptop then you got a good reason that your not in a good mood

    back on topic pls! pls pots proggy,s or i remove it here
    ~Hermen

  19. #19
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am gonna remove it! if i dont get proggy's or feedbacksorry for double post
    ~Hermen

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

    Default

    double poster!!!!!!!!!! im telling!!!!!!!!!!!! jk lol

  21. #21
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    W/E its outdated i got the newest version on my comp but no one post proggy's of my not working version
    ~Hermen

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

    Default

    Works great!!! I got no errors and didnt lag much. 2 thumbs up

  23. #23
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm strange proggy?

  24. #24
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    //////////////////////////////////////////////////////////////
    // Ran for 1 Minutes and 22 Seconds
    // Did 0 load(s) out of 5 loads set on this player
    // You started with crafting level : 0
    // You ended with crafting level : 0
    //////////////////////////////////////////////////////////////


    theres a proggy for you, it missed ellie or whatever the guys name is, then just logged out.

  25. #25
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    it dosent work mate just stays open in bank window
    Did someone say GDK?

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. [Rs2][BETA]Willow Knifer[BETA][Rs2]
    By Naum in forum RS3 Outdated / Broken Scripts
    Replies: 25
    Last Post: 12-04-2007, 08:10 PM
  2. Beta Testers For Flax's Gardener Eternity 1,0 BETA
    By Home in forum News and General
    Replies: 3
    Last Post: 12-02-2007, 01:56 PM
  3. [Rs2][BETA]Willow Knifer[BETA][Rs2]
    By Naum in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 10-13-2007, 07:58 AM
  4. Logik's Auto Talker V 0.1 BETA
    By logik in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 03-22-2007, 10:02 AM
  5. GrapeSoda's OverNight Auto Alc BETA 1.0
    By ilikegrapesoda72 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 01-06-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
  •