Difference between revisions of "Joining channels after hiding your address"
From Scriptwiki
(by bindi) |
m (challengeauth is safer :)) |
||
Line 22: | Line 22: | ||
;; check if we have connected to QuakeNet | ;; check if we have connected to QuakeNet | ||
− | + | [[Challenge auth|ChallengeAuth]] | |
− | ;; if so, let's auth | + | ;; if so, let's auth safely |
![[mode]] [[$me]] +x | ![[mode]] [[$me]] +x |
Revision as of 12:49, 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). } }