modifie

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
k
kitsaras
Voice
Posts: 29
Joined: Thu Feb 02, 2006 4:57 pm

modifie

Post by kitsaras »

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: Select all

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
Post Reply