Ok, I want to autovoice everyone joining the channel, but when people that have auto-op with L (on QuakeNet) join the channel, L gives them op first, so voicing is not necessary anymore and just results more spam.
So I want it to chech if the user already has op from L, but it has to be timed a little after then joining, because.. you know
Code: Select all
proc join!rock {nick host hand chan} {
if {$chan != "#rock.sas"} { } else {
if {![isop $nick $chan]} { pushmode $chan +v $nick } else { } } }
Code: Select all
proc join!rock {nick host hand chan} {
if {$chan != "#rock.sas"} { } else {
utimer 5 "if {![isop $nick $chan]}" { pushmode $chan +v $nick } else { } } }