Results 1 to 3 of 3

Thread: Putting 2 digits together

  1. #1
    Join Date
    Oct 2007
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Putting 2 digits together

    I need some help with this captcha cracker ( not for runescape ).
    The captcha gives 4 numbers ( all numbers got 2 digits ).
    Like this:

    I can now read every single digit of it, but i need to put 2 digits together.
    Like in the first one; i can read 4 and 8, but i need it to put it together to make 48.

  2. #2
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Well if you can get both, turn them into a string, inttostr(4) + inttostr(8), then into an int again:

    strtoint(inttostr(4)+inttostr(8));



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  3. #3
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Here you go:

    SCAR Code:
    Function IntsToString(Ints: TIntegerArray): String;
    Var
      I: Integer;
    Begin
      For I := 0 To High(Ints) Do
      Begin
        Result := Result + IntToStr(Ints[i]);
      End;
    End;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Putting retaliate OFF
    By The Intern in forum OSR Help
    Replies: 10
    Last Post: 02-10-2008, 12:54 PM
  2. Putting adds or your site.
    By Johura in forum News and General
    Replies: 4
    Last Post: 10-05-2007, 10:38 PM
  3. Help With putting srl stats into my script?
    By Dangerous Garden Tools in forum OSR Help
    Replies: 1
    Last Post: 09-27-2007, 05:10 AM
  4. Need help with putting forms into my script.
    By Dangerous Garden Tools in forum OSR Help
    Replies: 5
    Last Post: 09-24-2007, 10:22 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
  •