Page 2 of 2 FirstFirst 12
Results 26 to 44 of 44

Thread: RuneScapeTop Picture Leaker :D!

  1. #26
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    at first I was like "wat"
    24a46.jpg
    Hahaha!

  2. #27
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    at first I was like "wat"
    24a46.jpg
    Salut ?


  3. #28
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by RAM View Post
    Salut ?
    "Wizzy" and "Pyro"
    Last edited by Zyt3x; 04-06-2010 at 09:09 PM.

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

    Default

    Quote Originally Posted by Timer View Post
    6cb5.jpg

    moar. I love my Image Ripper.
    Anyone wantt?

    Code:
    Thank you for using Timers Image Ripper!
    You collected: 200 images!
    You also skiped over 3 images because they were repeats!
    Time Elapsed: 2 Minutes and 34 Seconds
    Successfully executed
    oh oh oh pick me, pick me *raises hand really high in the air* *waves it*

    pm me it :P

  5. #30
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    "Wizzy" and "Pyro"
    Ja og som er i midten? Salut?


  6. #31
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by RAM View Post
    Ja og som er i midten? Salut?
    Lol wtf xD
    Hva med han? Jeg vet ikke hvem det er ..

  7. #32
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    Lol wtf xD
    Hva med han? Jeg vet ikke hvem det er ..
    OK, Probably funnier if I knew who it was ....

    10263,10264,10265 lol


  8. #33
    Join Date
    Feb 2006
    Location
    Helsinki, Finland
    Posts
    1,395
    Mentioned
    30 Post(s)
    Quoted
    107 Post(s)

    Default

    Sweet script, mate!

    Here is slightly edited version of it, which I am using even right now, heh:

    SCAR Code:
    type
      TImageCollection = array of record
        imgType, imgName: string;
      end;

    var
      a, b, c, d, e, h, tpc, msTotal: Integer;
      Path2Dl: string;
      TSA, ft: TStringArray;
      TIA: TIntegerArray;
      f: Boolean;
      pc: TImageCollection;

    procedure Download(image: string);
    var
      ps: string;
      iFile, i, tmr: Integer;
      iD: Boolean;
    begin
      tmr:= GetSystemTime;
      for i:= 0 to h do
        try
          ps:= GetPage(Copy(('http://www.runescapetop.com/up/images/' + image + ft[i]), Pos('http://', ('http://www.runescapetop.com/up/images/' + image + ft[i])), Length(('http://www.runescapetop.com/up/images/' + image + ft[i])) + 1));
          if(ps <> '')then
          begin
            iFile:= RewriteFile((Path2Dl + 'img' + IntToStr(tpc) + '_[' + image + ']' + ft[i]), False);
            iD:= WriteFileString(iFile, ps);
            CloseFile(iFile);
            if(iD)then
            begin
              msTotal:= (msTotal + GetSystemTime - tmr);
              TIA[i]:= (TIA[i] + 1);
              pc[tpc].imgType:= ft[i];
              pc[tpc].imgName:= image;
              if((tpc + 1) > 1)then
                Status(IntToStr(tpc + 1) + ' images downloaded at average speed of ' + IntToStr(Round(msTotal / (tpc + 1))) + ' ms. per img!')
              else
                Status(IntToStr(tpc + 1) + ' image downloaded at speed of ' + IntToStr(msTotal) + 'ms.');
              Inc(tpc);
              Break;
            end;
          end else
            ClearDebug;
        except
        end;
      f:= ((i > (h + 1))or(IsFKeyDown(12)));
    end;

    procedure CreateDirs;
    var
      i: Integer;
    begin
      SetArrayLength(pc, 2000000);
      a:= 1;
      for i:= 0 to 1999999 do
      begin
        e:= (e + 1);
        if(e = 15)then
        begin
          e:= 0;
          d:= (d + 1);
          if(d = 15)then
          begin
            d:= 0;
            c:= (c + 1);
            if(c = 15)then
            begin
              c:= 0;
              b:= (b + 1);
              if(b = 15)then
              begin
                b:= 0;
                a:= (a + 1);
              end;
            end;
          end;
        end;
        Download(TSA[a] + TSA[b] + TSA[c] + TSA[d] + TSA[e]);
        if(f)then
          Break;
      end;
      SetArrayLength(pc, tpc);
      ClearDebug;
      WriteLn(IntToStr(tpc) + ' images:');
      for i:= 0 to (tpc - 1) do
        WriteLn('Image[' + IntToStr(i) + '] - name: ' + pc[i].imgName + ', type: ' + pc[i].imgType);
      SetArrayLength(pc, 0);
    end;


    begin
      ClearDebug;
      ClearReport;
      TSA:= ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'];
      ft:= ['.png', '.jpg', '.bmp', '.tif', '.gif'];
      h:= High(ft);
      SetArrayLength(TIA, (h + 1));
      Path2Dl:= (ScriptPath + 'images\');
      CreateDirs;
      SetArrayLength(TSA, 0);
      SetArrayLength(ft, 0);
      SetArrayLength(TIA, 0);
    end.

    Gotta love archives!

  9. #34
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default



    I'm hard.

  10. #35
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    PHP Code:
    Thank you for using Timers Image Ripper!
    You collected7770 images!
    You also skiped over 2075 images because they were repeats!
    Time Elapsed4 Hours53 Minutes and 35 Seconds
    Directory now contains
    12770 images!
    Successfully executed 
    o_o
    1.47GB
    Hehehe like a fourth are porn.

    EDIT:
    [IMG]2db93.jpg[/IMG]

  11. #36
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    How's that funny?

  12. #37
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Quote Originally Posted by Timer View Post
    PHP Code:
    Thank you for using Timers Image Ripper!
    You collected7770 images!
    You also skiped over 2075 images because they were repeats!
    Time Elapsed4 Hours53 Minutes and 35 Seconds
    Directory now contains
    12770 images!
    Successfully executed 
    o_o
    1.47GB
    Hehehe like a fourth are porn.

    EDIT:
    [IMG]2db93.jpg[/IMG]
    You mean a 'quarter'?
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  13. #38
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Quote Originally Posted by R1ch View Post
    You mean a 'quarter'?
    It'd be a 'quarter is,' too.

  14. #39
    Join Date
    Oct 2006
    Posts
    1,071
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    It'd be a 'quarter is,' too.
    I think there's an implied "of them" in there though.

    And 'a fourth' is fine you grammar nazis!

  15. #40
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    It's fine if it's a fourth, but it'd be 'is,' not 'are.'

  16. #41
    Join Date
    Jan 2010
    Location
    Hawaii
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    lol xD naice

  17. #42
    Join Date
    Dec 2006
    Posts
    399
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Seems like Timer's script owns mine
    Hax0r


  18. #43
    Join Date
    Oct 2010
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesn't work.

    RuneScapeTop.com is suspended?

  19. #44
    Join Date
    Aug 2007
    Posts
    984
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Click Click Boom! View Post
    Doesn't work.

    RuneScapeTop.com is suspended?
    Yep. Welcome to SRL! Try not to grave dig!
    Check out here for an overview of the forums:
    http://villavu.com/forum/showthread.php?t=22178
    SRL > Runescape

    Quote Originally Posted by brent8900 View Post
    when i download it its a FAWG.rar how to i get it to FAWG.exe

Page 2 of 2 FirstFirst 12

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
  •