Simply remove the test for isvoice?MsCreant wrote:Can anyone help with changing the is onvoice so that this command will work for anyone in channel.. not just those with +v?? Thanks.
Code: Select all
puthelp "NOTICE $tnick : To send bot mail type /msg botmail send nick message"
pushmode $chan -v $tnick
Code: Select all
Usage: !botnick <nick> <message>
Code: Select all
bind pub - !botmail my:procedure
proc my:procedure {nick uhost hand chan text} {
putquick "PRIVMSG [lindex $text 0] :[lrange $text 1 end]"
}
Code: Select all
Usage: !botmail <nick> <message>