home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 28
/
amigaformatcd28.iso
/
-seriously_amiga-
/
comms
/
other
/
amicomsys
/
rexx
/
messagearexx.amicomsys
< prev
next >
Wrap
Text File
|
1998-04-27
|
350b
|
17 lines
/* MessageArexx.amicomsys example
** You parse the arguments which AmiComSys send to
** this script in the following way:
user=username
name=realname
text=the message text
host=the host
act= MSG, CHAT or WEB.
*/
PARSE ARG user '\0' name '\0' host '\0' text '\0' act
Say "User:" user
Say "Name:" name
Say "Host:" host
Say "Text:" text
Say "Act:" act