home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 1_general / msg < prev    next >
Encoding:
Text File  |  2002-10-28  |  2.8 KB  |  69 lines

  1. Synopsis:
  2.    msg [=]<nickname> <text to send>
  3.    msg <channel> <text to send>
  4.    msg %<process id|process name> <text to send>
  5.  
  6. Description:
  7.    This command has 3 primary functions; to send a private message to an
  8.    individual, to send a message to a channel, or to send a message to a
  9.    running EXEC process (usually a command of some sort).  You can specify
  10.    multiple recipients for the message by delimiting them with commas (but
  11.    no spaces), and you may even mix-and-match the types of recipients.
  12.  
  13.    Additionally, there are 3 special cases for recipients.  If you specify
  14.    a single comma, ",", the message will go to the last person who sent you a
  15.    MSG.  If a single period, ".", the message will go to the last person you
  16.    sent a MSG to.  If you specify an asterisk, "*", the message will go to
  17.    your current channel.
  18.  
  19.    Finally, you can make ircII-EPIC beep whenever you receive a private
  20.    message by setting BEEP_ON_MSG to "msgs".  This is turned off by
  21.    default.
  22.  
  23. Examples:
  24.    To send a private message to your friend Buddha:
  25.       /msg buddha hi there!
  26.  
  27.    To send a message to your current channel:
  28.       /msg #channel how is everyone today?
  29.  
  30.    To send a message to a running EXECed process with id 2:
  31.       /msg %2 exit
  32.  
  33.    To send a message to your friends buddha, booya (with whom you have a
  34.    DCC CHAT running), and channel #foobar:
  35.       /msg buddha,=booya,#foobar see you later!
  36.  
  37.    To send a message to an EXECed process named "mail":
  38.       /msg %mail x
  39.  
  40. Aliases:
  41.    When sending a message to your current channel, MSG has the same effect
  42.    as the SAY command.
  43.  
  44. See Also:
  45.    dcc(1) chat; exec(5); load(5) nicks; notice(1); on(5) msg, public_msg,
  46.    send_msg; query(1); say(1); send(5); set(4) beep_on_msg
  47.  
  48. Restrictions:
  49.    The IRC protocol explicitly prohibits any client from sending any
  50.    automated response to a MSG other than a NOTICE, and ircII-EPIC
  51.    enforces this policy.
  52.  
  53.    The special cases for private MSG recipients, ",", ".", and "*", may
  54.    not be specified with any other recipients (i.e. in a comma-delimited
  55.    list), they must be used alone.  Attempting to do so will cause the
  56.    client to not interpret them and assume they are literal nicknames,
  57.    which will return a "No such nick/channel" error message.
  58.  
  59.    You may not send a message to any channel that is +n unless you are
  60.    currently on it (and if it is +m, you must have +v or +o status).  See
  61.    MODE for more information.
  62.  
  63.    Recent +CS servers (mostly used on EFnet) now restrict the number of
  64.    people you may simultaneously send a MSG to.  The maximum is 20 people,
  65.    though local operators will be warned if there are more than 10, in an
  66.    attempt to curb irc "spams".  The /th servers are knows to behave in a
  67.    similar manner.
  68.  
  69.