home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 March / march_2000.iso / Palm / Internet / PalmIRC / chatcmds.txt < prev    next >
Encoding:
Text File  |  1999-04-13  |  4.4 KB  |  148 lines

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