Guest User

Untitled

a guest
Sep 24th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.57 KB | None | 0 0
  1. on *:CONNECT: {
  2.   ; When we connect to any network
  3.   if ($network == MerbosMagic) {
  4.   ; If the network we've connected to is MerbosMagic
  5.     msg NickServ IDENTIFY Blimp %pass
  6.     ; Identify as Blimp
  7.   }
  8. }
  9.  
  10. alias SetPass {
  11. ; Example: /setpass HERPDERP
  12.   set %pass $1
  13.   ; Sets our pass to the first and only argument the command has.
  14.   ; Uncomment the following line if you want the script to confirm what your pass is set to:
  15.   ; echo -a NS password set to %pass
  16.   ; This will echo (display, but not send over the net) what your pass is set to when /setpass is run.
  17. }
Add Comment
Please, Sign In to add comment