Short:        NickServ identify AmIRC script
Author:       Pavel Fedin <sonic_amiga@rambler.ru>
Uploader:     Pavel Fedin <sonic_amiga rambler ru>
Type:         comm/irc
Version:      1.2
Replaces:     NickServAuth
Architecture: generic

Description:
------------
This script automaticly identify you at NickServ IRC service
when connecting to IRC server.

Installation:
-------------
1) Copy to AmIRC/Rexx directory.
2) Rename to "Connected.AmIRX".
3) Read Configuration part and edit setup.
4) Re(connect) to IRC-server.

 Note: If you're using Kuang11 or some other AmIRC extension, "Connected.amirx"
is already present in your system. If you erase it, you can break your setup.
In this case you should leave NickServAuth.amirx name as it is, and put the
following command at the beginning of your existing Connected.amirx script:

 'SAY /RX NickServAuth.amirx'

 Quotes should be present in it!
 For example (if you're not familiar with programming and ARexx at all), here
is modification of my Connected.amirx of Kuang11:

 --- cut ---

/* $VER: Connected.amirx 3.22 (09.07.00) Kuang Eleven 3 Init for AmIRC 2+
*/
scrpath='T:' /* Path of events handlers*/
/* Do not mess with anything below */
options results
signal on syntax

'SAY /RX NickServAuth.amirx'

x=getclip('st_init')
IF x==1|x=2 THEN DO
 cecho(version() 'active')
 'SAY /RX Kuang11AUTH.amirx'
 'SAY /RX _Connected.AMIRX'
 exit
END

 --- cut ---

Configuration:
--------------
1) Open the script in your favourite text editor.
2) List all your NickServ passwords and domains of IRC networks where you use
   them, for example:

password.1="myforestnetpass"
ircdomain.1="forestnet.org"
password.2="myforkrupass"
ircdomain.2="fork.ru"

 You may add 3, 4, etc pairs. Their number is unlimited.

That's all! Enjoy!
