#Use this in the channel where to deop the nick.
Usage: !deopnick <nick>
Code: Select all
bind pub n !deopnick deop:a:nick
proc deop:a:nick {nick uhost hand chan text} {
if {([onchan [lindex $text 0] $chan])} {
putserv "SAMODE $chan -o [lindex $text 0]"
}
}