Difference between revisions of "Joining channels after hiding your address"

From Scriptwiki
Jump to: navigation, search
(by bindi)
 
m
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
<!-- Safe login -->
 +
 
  ; Joining channels after hiding your address
 
  ; Joining channels after hiding your address
 
  ; by bindi @ QuakeNet
 
  ; by bindi @ QuakeNet
Line 4: Line 6:
 
  ; 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 18:
 
    
 
    
 
    
 
    
  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 22: Line 24:
 
     ;; check if we have connected to QuakeNet
 
     ;; check if we have connected to QuakeNet
 
    
 
    
     !.[[raw]] -q AUTH <auth> <password>
+
     [[Challenge auth|ChallengeAuth]]
     ;; if so, let's auth
+
     ;; if so, let's auth safely
 
    
 
    
 
     ![[mode]] [[$me]] +x
 
     ![[mode]] [[$me]] +x
Line 30: Line 32:
 
  }
 
  }
 
    
 
    
  raw 396:*:{
+
  [[raw 396]]:*:{
 
   ;; this triggers when your host is hidden
 
   ;; this triggers when your host is hidden
 
    
 
    

Latest revision as of 19: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).
  }
}

See also