Just wondering, I run a channel and currently use mirc for autovoicing the females. However i think the eggdrop would be better. Can someone write and/or direct me to, a script that has a public command of !fem that can add users to autovoice. Not one the bot user has to type in, but a regular channel user can activate. Thanks , i appreciate it if someone can help me out !
bind pub n|n !fem add:fem
proc fem {nick uhost hand chan arg} {
set mask [lindex [split $arg] 0]!*@*
if {[finduser $mask] != "females"} {
setuser females HOSTS $mask
puthelp "privmsg $chan :Added $mask to autovoice"
} { puthelp "privmsg $chan :$mask already autovoice" }
}
Make sure you create a handle called "females" with +v flag (or whatever is considered autovoice for you). Basically, this script will just add nick!*@* to the "females" handle when !fem nick is typed on channel (by an owner).