Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
bind nick -|- * no:op
proc no:op {nick uhost hand chan newnick} {
global botnick
if {[isbotnick $nick] == 1} {
return 0
}
if {$hand != "*" && ([matchattr $hand n|n $chan] == 1 || [matchattr $hand b] == 1)} {
return 0
}
pushmode $chan -o $newnick
}
us3nch0 каза:Можете ли да ми дадете линк, след като някой си смени ника, и ако има OP или VOICE бота да ги DeOp или DeVoice?
ON *:NICK: {
set %kanala #канала-ти
if ($newnick isop %kanala) || ($newnick isvo %kanala) {
mode %kanala -vo $newnick $newnick
}
}
bind nick -|- * no:op
proc no:op {nick uhost hand chan newnick} {
global botnick
if {[isbotnick $nick] == 1} {
return 0
}
if {$hand != "*" && ([matchattr $hand n|n $chan] == 1 || [matchattr $hand b] == 1)} {
return 0
}
pushmode $chan -o $newnick
}
bind nick -|- * no:voice
proc no:voice {nick uhost hand chan newnick} {
global botnick
if {[isbotnick $nick] == 1} {
return 0
}
if {$hand != "*" && ([matchattr $hand n|n $chan] == 1 || [matchattr $hand b] == 1)} {
return 0
}
pushmode $chan -v $newnick
}