http://ut2003stats.epicgames.com
what i would really like is something that would check for your Deathmatch rating.. and possibly your CTF.
I got as far as :
Code: Select all
proc pub_stats {nick uhost hand chan arg } {
set string [lindex [split $arg] 0]
if { $string == "" } {puthelp "PRIVMSG $nick :Usage = !stats <Your utstats ID>" ; return 0 }
puthelp "PRIVMSG $chan :Processing utstats request for $nick"
set count "0"
set file [open "|/usr/local/bin/lynx -source http://ut2003stats.epicgames.com/playerstats.php?player=$arg" r]
while {![eof $file]} {
gets $file html
if {$html == {}} {continue}

anyway, free help is appreciated, or if you would rather just write the whole thing over and get paid, that's cool too
tia!