home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / ezirc12o.zip / install.zip / alias / greet.cmd < prev    next >
OS/2 REXX Batch file  |  1997-12-26  |  742b  |  21 lines

  1. RETURN /* remove this line if you really want this to work */
  2.  
  3. parse arg window nick str2
  4. /* window = channel or private name, or irc server name*/
  5. /*         depending on whether the script is run from a */
  6. /*         channel window, private window, or main window*/
  7. /* nick = next parameter ,  a nickname            */
  8. /* str = third parameter, the rest of the string*/
  9.  
  10. /* Note the content can be what ever you want.  IE:    */
  11. /* /me is a OS/2 Programmer working on a Game          */
  12. /* /me works for the IRS                               */
  13. /* /me is a Farmer, who raises EMUs                    */
  14. /* or the general one of your age/sex/location         */
  15.  
  16.     str = '/me is age/sex/location '
  17.  
  18. say str
  19. return str
  20.  
  21.