home *** CD-ROM | disk | FTP | other *** search
/ PalmOS Software Digest / PalmDigest.iso / 网络 / pirc131shareware / chatcmds.txt < prev    next >
Text File  |  2000-02-20  |  5KB  |  149 lines

  1. ######################################
  2. ### PalmIRC Ver1.0x command list    ###
  3. ###          by Hiroyuki Okamoto   ###
  4. ######################################
  5.  
  6. You can input the following commands on input field of PalmIRC.
  7. All commands start with '/'. Other commands are passed to the IRC server directly based on RFC1459.txt
  8.  
  9.  
  10. ---
  11. /BAN #channel nickname
  12.    bans a person from the specified channel
  13.    Examples:
  14.       /BAN #palmchat PalmKiller       ; ban PalmKiller from #palmchat
  15.  
  16.  
  17. /IGNORE nickname
  18.    igonores nickname person.
  19.    Examples:
  20.       /IGNORE chatter       ; ignore person chatter
  21.  
  22.  
  23. /INVITE nickname #channel
  24.    invites users to the specified channel.
  25.    Examples:
  26.       /INVITE Tom #Palmchat       ; Command to invite Tom to #palmchat
  27.  
  28.  
  29. /JOIN #channel [key]
  30.    joins the specified channel.
  31.    Examples:
  32.       /JOIN #foobar                    ; join channel #foobar.
  33.       /JOIN #foobar Password      ; join channel #foobar using the key "Password".
  34.  
  35.  
  36. /KICK #channel nickname
  37.    kicks  named  user  off a given channel.
  38.    Examples:
  39.       /KICK #palmirc John         ; KICK message to remove John from channel #palmirc
  40.  
  41.  
  42. /LIST #channel
  43.    lists channels and their topics.
  44.    Examples:
  45.       /LIST #palmchat,#123         ; List channels #palmchat and #123
  46.  
  47.  
  48. /LOG {ON|OFF} #channel
  49.    turns logging on/off for the channel
  50.    Examples:
  51.       /LOG ON #palmchat        ; turn logging on for #palmchat
  52.       /LOG OFF #palmchat        ; turn logging off for #palmchat    
  53.  
  54.  
  55. /ME message
  56.    tells the current channel or query about what you are doing.
  57.  
  58.  
  59. /MODE #channel {[+|-]|o|p|s|i|t|n|b|v} [<limit>] [<user>] [<ban mask>]
  60.    The various modes available for channels are as follows:
  61.            o - give/take channel operator privileges;
  62.            p - private channel flag;
  63.            s - secret channel flag;
  64.            i - invite-only channel flag;
  65.            t - topic settable by channel operator only flag;
  66.            n - no messages to channel from clients on the outside;
  67.            m - moderated channel;
  68.            l - set the user limit to channel;
  69.            b - set a ban mask to keep users out;
  70.            v - give/take the ability to speak on a moderated channel;
  71.            k - set a channel key (password).
  72.  
  73.  
  74. /MODE nickname {[+|-]|i|w|s|o}
  75.    The available modes are as follows:
  76.            i - marks a users as invisible;
  77.            s - marks a user for receipt of server notices;
  78.            w - user receives wallops;
  79.            o - operator flag.
  80.  
  81.  
  82. /MSG nickname message
  83.    sends a private message to this user without opening a query window.
  84.    Example:
  85.       /MSG Wiz Hello. How are You?        ;Send User Wiz the msg "Hello. How are You?"
  86.  
  87.  
  88. /NAMES #channel
  89.    gets a list of users on the channel.
  90.    Example:
  91.       /NAMES #palmchat                ;gets a list of users on #palmchat
  92.  
  93.  
  94. /NICK newnickname
  95.    changes your name to new one.
  96.    Example:
  97.       /NICK newnick            ;change your nickname to "newnick"
  98.  
  99.  
  100. /PART #channel
  101.    leave a channel.
  102.    Example:
  103.       /PART #palmchat             ; leave channel #palmchat
  104.  
  105.  
  106. /QUERY nickname <message>
  107.    Open a query window to this user and send them a private message.
  108.  
  109.  
  110. /QUIT <message>
  111.    A client session is ended with a quit message.
  112.    Example:
  113.       /QUIT Gone to have lunch        ; a client session is ended with the msg "Gone to have lunch"
  114.  
  115.  
  116. /TOPIC #channel <message>
  117.    change or view the topic of a channel.
  118.    Examples:
  119.       /TOPIC #test another topic          ;set the topic on #test to "another topic".
  120.       /TOPIC #palmchat              ;get the topic on #palmchat
  121.  
  122.  
  123. /WHOIS nickname
  124.    shows information about someone.
  125.    Examples:
  126.       /WHOIS Wiz                       ; return available user information about nick WiZ
  127.  
  128.  
  129. /CTCP nickname ctcpcommand
  130.    sends ctcp command to the specified person
  131.    The various ctcp commands available for ctcpcommand are as follows:
  132.  
  133.     CLIENTINFO    - Dynamic master index of what a client knows.
  134.     FINGER        - Returns the user's full name, and idle time.
  135.     PING        - Used to measure the delay of the IRC network between clients.
  136.     TIME        - Gets the local date and time from other clients.
  137.     USERINFO    - A string set by the user (never the client coder)
  138.     VERSION        - The version and type of the client.
  139.     etc...
  140.  
  141.    Examples:
  142.       /CTCP Wiz clientinfo    ; send Wiz  a ctcp msg Clientinfo to get Wiz's ctcp command list
  143.       /ctcp Joe version        ; check Joes's version of IRC client
  144.  
  145.  
  146.  
  147. etc... There are lots of IRC commands other than these. See RFC1459.
  148.  
  149.