im new to tcl's but can somone tell me what I need to do the following
when a oped bot get the message "op me please" in a prv msg, it ops the person
ALSO
when a oped bot get the message "voice me please" in a prv msg, it voiced that person?
bind msg - voice proc:laina
#seting the channel to voice in
set chan "#chan name here"
proc proc:laina {nick uhost hand arg} {
global chan
if {![isvoice $nick $chan]} { puthelp "mode $chan +v $nick" }
putlog "Forward loaded"
}