Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default anyone know code to show msn status

    i want a code that while let me put say
    www.colin-roberts.net/msn.php?msnemailhere
    and it will display wether there online or not using images like the habbo imager but in msn.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  2. #2
    Join Date
    Aug 2005
    Location
    Bristol
    Posts
    1,500
    Tokens
    391

    Latest Awards:

    Default

    http://www.onlinestatus.org/ has something you could leech off of

  3. #3
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    i changed what i said i want it so it just says Online or Offline no image.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  4. #4
    Join Date
    Oct 2006
    Location
    London
    Posts
    1,780
    Tokens
    0

    Latest Awards:

    Default

    i wana know too


  5. #5
    Join Date
    Aug 2005
    Location
    Bristol
    Posts
    1,500
    Tokens
    391

    Latest Awards:

    Default

    here's a shell script

    #!/bin/bash

    id="$1"

    if [ x"$id" == x ]; then
    echo "Usage: $0 " 1>&2
    exit 1
    fi

    curl http://www.blockstatus.com/msn/stchecker -F "msnac=$id" 2>/dev/null | grep "${id}.*Offline" 2>/dev/null 1>&2

    if [ $? -eq 0 ]; then
    echo "$id is Offline"
    else
    echo "$id is not Offline"
    fi
    Last edited by Wyked; 30-11-2006 at 10:41 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
  •