Difference between revisions of "Joining channels after hiding your address"
From Scriptwiki
m (more clickies!!! :D) |
m |
||
Line 1: | Line 1: | ||
+ | <!-- Safe login --> | ||
+ | |||
; Joining channels after hiding your address | ; Joining channels after hiding your address | ||
; by bindi @ QuakeNet | ; by bindi @ QuakeNet |
Latest revision as of 18:28, 18 June 2012
; Joining channels after hiding your address ; by bindi @ QuakeNet ; Date: 08-04-2012 ; Tested on mIRC 7.22 on *:START:{ ;; when mirc starts, connect to QuakeNet ;; (change the server if you prefer another server geographically closer ;; to you or something like that, see http://www.quakenet.org/servers) server irc.quakenet.org -i <nick> <alternate nick> <ident>@any.email.doesnt.matter <real name (doesn't have to be real, either :D)> ;; change the above to match your information. } on *:CONNECT:{ ;; this triggers when you've connected to a server if ($network == QuakeNet) && (*.??.quakenet.org iswm $server) { ;; check if we have connected to QuakeNet ChallengeAuth ;; if so, let's auth safely !mode $me +x ;; and add +x to our usermode } } raw 396:*:{ ;; this triggers when your host is hidden if ($network == QuakeNet) && (*.??.quakenet.org iswm $server) { ;; check if it's QuakeNet (just to be sure) join #channel1,#channel2,#channel3 key1,,key3 ;;change above to your channels and keys (if any). } }