View Single Post
Old 05-01-2005, 09:01 AM  
Harm
Too much time...
 
Join Date: Jul 2003
Posts: 1,430
Default

You could try the following. In proc ioB:readlog, add this :
Code:
if {[string equal $msgtype "STATS"]} {
	if {[string equal [lindex $line end] "usertop"]} {
		ioB:sndall $section "--------------------------------=UserTop=-------------------------------"
	} elseif {[string equal [lindex $line end] "grouptop"]} {
		ioB:sndall $section "--------------------------------=GroupTop=-------------------------------"
	}
	continue
}
right after
Code:
if {![info exists disable($msgtype)] || $disable($msgtype)==1} {continue}
You have to edit your zipscript.msg so
Code:
usersstats=usertop
groupsstats=grouptop
Harm is offline   Reply With Quote