home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -seriously_amiga- / comms / other / amicomsys / rexx / messagearexx.amicomsys < prev    next >
Text File  |  1998-04-27  |  350b  |  17 lines

  1. /* MessageArexx.amicomsys example
  2. ** You parse the arguments which AmiComSys send to
  3. ** this script in the following way:
  4. user=username
  5. name=realname
  6. text=the message text
  7. host=the host
  8. act= MSG, CHAT or WEB.
  9. */
  10. PARSE ARG user '\0' name '\0' host '\0' text '\0' act
  11.  
  12. Say "User:" user
  13. Say "Name:" name
  14. Say "Host:" host
  15. Say "Text:" text
  16. Say "Act:" act
  17.