Results 1 to 7 of 7

Thread: Ip Address

  1. #1
    Join Date
    Aug 2009
    Posts
    164
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Ip Address

    Is it possible for scar to find your global ip address?

    If so, can anyone post how it's done?

    Thanks.

  2. #2
    Join Date
    Feb 2009
    Posts
    1,447
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    You could get the html of a website that gets your ip and parse everything but your ip.

    Why do you need this?

  3. #3
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    SCAR Code:
    function GetIP : string;
    begin
      result := GetPage('http://kylewollaston.com/ip.php');
    end;
    I don't know of any other way. There probably is..
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  4. #4
    Join Date
    Aug 2009
    Posts
    164
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sex View Post
    SCAR Code:
    function GetIP : string;
    begin
      result := GetPage('http://kylewollaston.com/ip.php');
    end;
    I don't know of any other way. There probably is..
    Is there any way so that I don't have to rely on this person's website?
    How would I parse out all the info but the ip from a site like ipchicken.com?

  5. #5
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    That is my website..
    You can rely on it there is never anything wrong with it nor is there ever any traffic. The only traffic I would get is from loading that page.
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  6. #6
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Same as above just diffrent site =P

    SCAR Code:
    function GetIP: string;
      Result := GetPage('http://whatismyip.com/automation/n09230945.asp');
    end;

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  7. #7
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by Dgby714 View Post
    Same as above just diffrent site =P

    SCAR Code:
    function GetIP: string;
      Result := GetPage('http://whatismyip.com/automation/n09230945.asp');
    end;
    Heh, I was just looking for that But yeah, I recommend to use that over any other "private" site.
    There used to be something meaningful here.

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
  •