PDA

View Full Version : anyone know code to show msn status



Colin-Roberts
30-11-2006, 10:07 PM
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.

Wyked
30-11-2006, 10:13 PM
http://www.onlinestatus.org/ has something you could leech off of

Colin-Roberts
30-11-2006, 10:26 PM
i changed what i said i want it so it just says Online or Offline no image.

DiscoPat
30-11-2006, 10:31 PM
i wana know too

Wyked
30-11-2006, 10:41 PM
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

Want to hide these adverts? Register an account for free!