History and changes:

13-4-97
-------

** Added another check on the keyfile to make cracking a bit harder...
   Please note that further development of AmiMUD depends from the number of
   registration I receive...

** New rexx commands:

am_load FILENAME/A (load a configuration)
am_include FILENAME/A (include a configuration or a module)

** Updated arexx example script example.amud

12-4-97
-------

** Updated am_getvar and am_setvar rexx command to support custom variables.

11-4-96
-------

** Added the switch BUTTON to the am_addmacro rexx command

5-4-97
------

** Removed an enforcer hit caused by rexx command am_addmacro

** Now the linebuffer variable doesn't contains anymore the carriage return 
   character, this resolve some problems with am_echo.

1-4-97
------

** Added two new internal commands:

#connect hostname [port] - connect your self to a mud

example use:

alias=med
#connect medievia.com 4000

Typing "med" you'll connect to medievia.


#zap - Shutdown a connection, does not asks for confirm.

** A lot of internal code reordering.

31-3-97
-------

** Removed a big bug in the #echo command...

** Added variable support, actually you can only set a variable with set,
you can use it in macro body or trigger reactions. You can't trigger a value
using a variable.

Correct use:

#set tank mongo

macro=healt
hotkey=F4
cast 'heal' $tank\n

trigger=tank is $0
#set tank $0\n#echo Tank set to $0\n

Incorrect use:

trigger=tank is $tank
#echo Tank is $tank\n

30-3-97
-------

** Some improvements in the button window code

29-3-97
-------

** New config keyword "interleaved", default value on. If you disable it
AmiMUD will not try anymore to open the screen in interleaved mode. This
can be useful with the Picasso96 software.

** Added the "button" and "interleaved" options to the prefs program.

28-3-97
-------

** Added the button window, to make a macro displayable on the macro window
use the following syntax:

macro=macroname
button
macrobody\n

Obviously also:

macro=macroname
hotkey=hotkey definition
button
macrobody\n

macro=macroname
button
hotkey=hotkey definition
macrobody\n

Are correct way of using "button".

The button window will open on the left corner of the screen, the maximum
button is given by your screen height.

27-3-97
-------

** Now AmiMUD deletes correctly hotkey definitions when you use "Load Prefs"

25-3-97
-------

** Added a progress window that is opened in the DNS lookup process.
Obviously this will be opened only if you use a alphanumeric hostname.

15-3-97
-------

** Corrected a serious bug in the prefs program that used to trash macro
definitions...

