proc pubm:notice {nick host handle chan text} {
global g_maxpl
putserv "notice $chan : Hello $g_maxpl "
}
how i can do this to see the msg in all channel's not one..
Code: Select all
proc pubm:notice {nick host handle chan text} {
global g_maxpl
foreach channel [channels] {
putserv "notice $channel : Hello $g_maxpl "
}
}