i have trouble with that code. That code notification for all. But i want to notification for just users not ops.
So when op joins help channel no notification. i want to notification for just users. and dont notification for oper and admins.
i need a little help. Ty.
Code: Select all
bind join - * channel:welcome
proc kanal:welcome {nick uhost handle chan} {
global botnick
if {$nick == $botnick} { return 0 }
if {[string match -nocase "#helpchannel" $chan]} {
putquick "PRIVMSG #opchannel :# $nick wait in#helpchannel"
putquick "PRIVMSG $nick :Please wait you will be get help soon."
}