tglogo.png
0 LIKES

Snippet


Secured Connect by YmmaX

In Category General IRC Posted by Snippets On 12/04/23
Tags: secured connect Ymmax 

This script prevent to join in the channels, before X login, also connecting with a random nickname.
;###
;# Secured Connect
;# yM]x @ UnderNet
;###

ON *:LOAD: {
    .set %channels $$?="#Channel1,#Channel2,#Channel3,etc."
}

on *:START: {
    set %nickname $+(U,$rand(a,z),$rand(A,Z),$rand(a,z),$rand(a,z),N,\,$rand(0,9),$rand(0,9))
}

on *:NOTICE:*:?: {
    if ($nick == X) {
         if ( SUCCESSFUL === $2 ) { 
           .set %xlog in
           /mode $+ $me +ix
         }
    }
}

on *:DISCONNECT: {
    .set %xlog off
}

alias /joinall {
    if (%xlog == in) {
        /join -cn %channels
    }
}


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