Skip to content
TG007 community snippet #135

Auto-Join channels after identify by simo

join channels after u have identified for your registered nick just incase u have access on the channels you are joining to have u gaining access automated.

By Snippets Added Dec 6, 2023
General IRC All snippets
mIRC script 15 lines
About this snippet

Overview

join channels after u have identified for your registered nick just incase u have access on the channels you are joining to have u gaining access automated.
Source code

mIRC script

15 lines · 693 characters
on 1:Connect:{ 
   if ($istok(dalnet freenode,$network,32)) { nick johnDoe24 | ns identify jh498kjfwjh2498 } ; example        
   if ($istok(undernet ,$network,32)) { nick johnDoe24 | .msg [email protected]  login account password } ; example        
}

on *:notice:*:?:{
;for undernet  
  if ($regex($1-,/(.*AUTHENTICATION.*SUCCESSFUL.*)/Si) && $nick == X) {   
    if ($istok(undernet,$network,32)) { join #help,#lounge,#chat }  ; example          
  }
  ;for other networks  
    if ($regex($1-,/(.*Password.*accepted.*|.*you.*identified.*)/Si) && $nick == nickserv) {   
    if ($istok(dalnet freenode,$network,32)) { join #help,#lounge,#chat }  ; example        
  }
}
Community

Comments

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