Skip to content
TG007 community snippet #97

Identified Nick Autovoice by Err

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 )

By Snippets Added Dec 4, 2023
IRCd All snippets
mIRC script 16 lines
About this snippet

Overview

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 )
Source code

mIRC script

16 lines · 322 characters
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 
}
Community

Comments

Want to join the discussion? Sign in to TG007.
No comments yet. Start the discussion.