kitsaras Voice
Joined: 02 Feb 2006 Posts: 29
|
Posted: Wed Feb 15, 2006 7:01 pm Post subject: modifie |
|
|
if we modify this perfect script can we catch all the servers in the network ?
(4 is) and we can add a timer into ?
if it is possible can u help me to do it ?
| Code: |
bind pub - !status statsu
bind raw - 242 show:statsu
proc statsu {nick uhost hand chan arg} {
global statsu
if {![info exists statsu([set chan [string tolower $chan]])]} {
set statsu($chan) 0
putserv "stats u"
}
}
proc show:statsu {from kw arg} {
global statsu
foreach {c v} [array get statsu] {
puthelp "privmsg $c :[string range $arg [expr {[string first : $arg]+2}] end]"
array unset statsu $c
}
}
|
thank u |
|