Skip to content
TG007 community snippet #119

Secured Connect by YmmaX

This script prevent to join in the channels, before X login, also connecting with a random nickname.

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

Overview

This script prevent to join in the channels, before X login, also connecting with a random nickname.
Source code

mIRC script

31 lines · 533 characters
;###
;# 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
    }
}
Community

Comments

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