Difference between revisions of "Joining channels after hiding your address"
From Scriptwiki
m (challengeauth is safer :)) |
m (more clickies!!! :D) |
||
Line 4: | Line 4: | ||
; Tested on mIRC 7.22 | ; Tested on mIRC 7.22 | ||
− | on *:START:{ | + | on *:[[on start|START]]:{ |
;; when mirc starts, connect to QuakeNet | ;; when mirc starts, connect to QuakeNet | ||
Line 16: | Line 16: | ||
− | on *:CONNECT:{ | + | on *:[[on connect|CONNECT]]:{ |
;; this triggers when you've connected to a server | ;; this triggers when you've connected to a server | ||
Line 30: | Line 30: | ||
} | } | ||
− | raw 396:*:{ | + | [[raw 396]]:*:{ |
;; this triggers when your host is hidden | ;; this triggers when your host is hidden | ||
Revision as of 12:53, 20 April 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). } }