tglogo.png
0 LIKES

Snippet


Identified Nick Autovoice by Err

In Category IRCd Posted by Snippets On 12/04/23

Scripts whois users on join and sets +v ( voice ), if the nick is identified.
change the following line according to your services.
if ($4 == logged )
on *:join:#:{
  if ($nick != $me) { 
    set %whois. $+ $nick $chan 
    whois $nick 
  }
}

raw 307:*:{ 
; some of the services show "*is identified* or *is logged on as*."
; change it according to it.
  if ($4 == logged ) { 
    mode %whois. [ $+ [ $2 ] ]  +v $2
    unset %whois. $+ $2  
  }
  haltdef 
}


Comments 0


Please note that on our website we use cookies necessary for the functioning of our website, cookies that optimize the performance. To learn more about our cookies, how we use them and their benefits, please read our Cookie Policy.
I Understand