Results 1 to 3 of 3

Thread: mIRC login script?

  1. #1
    Junior Member
    Join Date
    Nov 2011
    Posts
    1

    Default mIRC login script?

    So yeah, is there a login script which types automatically /msg NickServ IDENTIFY <pass>?

  2. #2
    Junior Member
    Join Date
    Apr 2009
    Posts
    4

    Default

    Code:
     on *:start:{
      server irc.rizon.net 
     }
    
    on *:connect:{
      if ($network == Rizon) {
        msg NickServ identify <yourpassword>
        join #chat
        ;To disable the automatic join, you can either delete it or comment it by using a ";" character.
      }
    }
    Open up your Script Editor in mIRC by hitting ALT + R and paste these two in there, WITH YOUR INFORMATION PROVIDED. This was a simple script a buddy of mine whipped up and I've had no problems out of it. Should be extremely simple to add more networks/channels/etc.

    ~P

  3. #3
    Junior Member
    Join Date
    Jan 2012
    Posts
    1

    Default

    I wouldn't recommend using $network == _____
    Network name can easily be spoofed by anyone that sets up an IRCd on a server and then if they get you to connect to their server mIRC will think you're connecting to Rizon and trigger the script and BAM they have your login credentials.
    I would suggest using $serverip and making sure the $serverip is one of Rizon's IPs. More secure that way.

Similar Threads

  1. RizonIRPG Script for mIRC
    By Locotes in forum #RizonIRPG
    Replies: 4
    Last Post: 09-15-2011, 10:10 AM
  2. mIRC: Anti-Flood Script
    By Jason in forum IRC client scripts and addons
    Replies: 1
    Last Post: 12-30-2009, 12:53 AM
  3. mIRC: WHOIS script
    By darkex in forum IRC client scripts and addons
    Replies: 0
    Last Post: 10-14-2009, 07:35 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •