I own an MSN Group, and have recently hit 40,000 members... I placed "Current members (40000)" in my MSN name, and then thought about keeping it in there.
I was wondering if there is a way that can automatically update every hour (or so?).
I understand this is asking alot. I have the coding to get the data if this helps. I just wouldn't know how to get that into my MSN name.
code:alias members { sockopen members groups.msn.com 80 | .timerclose 1 20 sockclose members }
on *ockopen{
sockwrite -n $sockname GET / $+ %chan $+ /_members.msnw?action=member_admin&type=MEM HTTP/1.1 $+ $crlf $+ User-Agent: Vincula/ $+ $vver (compatible; MSIE 6.0; Windows NT 5.1) $+ $crlf $+ Accept: */* $+ $crlf $+ Accept-Language: EN-US
sockwrite -n $sockname Host: groups.msn.com $+ $crlf $+ Cookie: AdultWarn=1;path=/;chocx=9,02,0310,2401; MSPProf= $+ %msnpp.profile $+ ; MSPAuth= $+ %msnpp.ticket $+ ; $+ $crlf $+ Connection: Close $+ $crlf $+ $crlf
}
on *ockread{
if ($sockerr) {
halt
}
else {
var %memb
sockread %memb
if (Current members $chr(40) isin %memb) { $message $htmlfree(%memb) }
}
}
I'm not sure if that is much help, but someone said it may come in handy.
Thank you for your time.