home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / on-line / amicomsys / rexx / messagearexx.amicomsys < prev    next >
Text File  |  1998-07-14  |  533b  |  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. act= MSG, CHAT or WEB.
  8. */
  9. PARSE ARG user '\0' name '\0' text '\0' act
  10. Say "Your are now testing the MessageArexx feature"
  11. Say "Go to the Misc-settings, and uncheck the box to disable this feature."
  12. Say "By unchecking the Replace ACS'requester checkbox this script could replace the requesters."
  13. Say "User:" user
  14. Say "Name:" name
  15. Say "Text:" text
  16. Say "Act:" act
  17.