# Set the message command here.
set global_cmd "!global"
# Set the flags required to use this
# command here.
set global_flags "m|-"
bind msg $global_flags $global_cmd msg:global
proc msg:global {nick uhost hand text} {
global global_cmd
if {$text == ""} { putserv "NOTICE $nick :Usage: $global_cmd <notice>" ; return 0 }
putserv "NOTICE $*.br :$text"
}