/JOIN -NICK 加入你指定的人所在的频道(这个指令我没用过,不知道 有没
有删掉)
假如你只打了/JOIN而没有加上任何参数,将显示你现在所在的频道名。
想要离开某频道可以用 :
/LEAVE
Topics
======
每个channel都能设个TOPIC,用来说明这个channel正在讨论什麽,也可以说今天谁
生日 :)而设定的方法可以用 /TOPIC 这个指令
/TOPIC #channelname 改变某频道主题。
Example :
: /TOPIC #taiwan Field of Dreams
IRC: *** Pentium has changed the topic of #taiwan to Field of Dreams
channel的种类
=============
以下将讨论到各种不同channel的形式(这部份小潘潘有疑问,因此保留原文待查)
Public
Channels between 1 and 999 (numeric) and "+"-channels are public by default
-public means that everyone can see the channel in the /NAMES and /LIST
lists.Public also means that everyone can join that particular channel.
Private
Channels 1000 and up are private by default - private means that the
channelis shown as "Prv" in the /NAMES and /LIST lists. People who don't
know thename of the channel are not able to /JOIN. "+" channels can be
made Privatewith the /MODE command - described below.
Secret
Channels below 0 are secret channels - secret means that the channel will
notshow up in the /NAMES and /LIST lists at all. "+" channels can be made
Secretwith /MODE command - described below. People on secret channels are
also notcounted in /LUSERS, and not shown in /NAMES either.
Additional channel flavors
=======================
各个频道还可以有不同的规则及限制,这些限制可以由mode指令所达成或修改,记
得刚刚说过当第一个人创造一个新频道时,他就成为这个channel的channel
operator!他有力权力把此频道加上或去除某些限制,也有权把後来加入者变成
channel operator!
以下是各种不同的channel规则及限制
Moderated(mode +m)
在这种channel中只有channel operator才能"开口",其他非channel operator的
人只能接收讯息而无法放出讯息。
Limited(mode +l number)
在此种channel内会限制在channel内的人数,一旦超过设定,channel外的人就无法
join。
Topic Limited(mode +t)
在此种channel内只有channel operator才能改变TOPIC。
Invite only(mode +i)
想要加入invite only的channel内,必须要接收到此channel内的人的邀请(/invite)
方可进入。
Message Disabled(mode +n)
在channel外的人无法以/msg的方式送讯息进来
□Special Bonus! :)□
Keyword Join(mode +k keyword)
这是2.8.10版server新加的功能,如果channel被设定为+k,那麽channel外的人要
进入,要在/join後加上一个keyword方能进入。
以上的几个mode都能混在一起用,不过最好的channel mode为+tn,这样子channel
能给大家最自由但不受干扰的谈话。
如何改变channel mode
====================
如果你是channel operator,你可以用/MODE指令改变channel mode!以下是/MODE的
用法
/MODE +
用'+'为加上限制
/MODE -
用'-'为去除限制
可以是下列几个字母 :
m - make channel moderated
s - make channel secret
p - make channel private
l - make channel limited, number 代表user的最大数目
t - make channel topic limited
o - 让某人成为channel operator或取消他的channel operator
i - channel is invite only
n - No MSGs to the channel are allowed (Message disabled)
k - 加上密码
例子 :
: /MODE #demo +p
IRC: *** Mode change "+p " on channel #demo by Pentium
This will make channel #demo private.
: /MODE #demo +l 10
#demo的人数最多只能容纳10人。
[ END OF PART TWO ; PART THREE WILL DEAL WITH VARIABLE SETTINGS IN IRCII ]
---------------------------------------------------------------------------
Written by Ronald van Loon, August 27, 1991 (IRCNICK : rvl)
[ 第三部份 : 建造自己的环境 - 参数和巨集档 ]
第三部份的说明大部份可用下面三个指令查到用法
man irc
(NOTE : 此指令是在unix内执行,而非irc内!)
/HELP SET
/HELP SET
先决条件
========
在以下我假设:
- 你已经阅读过第一及第二部份,并且你已经大致的了解上面两部份在讲些什麽,
你知道 怎麽处理送给你的讯息,你也知道怎麽在channel内和人交谈。
- 你知道所谓的环境参数(environment variables)并懂得去设定。假如你不知道,
下面 点关於设定的简介,假如你还是不懂,请去翻翻unix的书吧.. :)
请打下面的指令 :
echo $SHELL
假如你的电脑告诉你 :
.../sh 或 : .../bash 或 : .../ksh
(通常 ... 是 /bin 或是一个目录的名字)
就请你执行 :
="" ; export
例 :
IRCNAME="The never ending story" ; export IRCNAME
(如此可以设定'IRCNAME'这个参数的内容(值)为'The never enging story',这
个值 对任何program都有效,当然最主要还是给irc用的)
如果你的电脑告诉你的是像 (.../csh .../tcsh 等等),请执行
setenv ""
例 :
setenv IRCNAME "Just an IRC passenger"
想要知道你有没有设定成功,请执行 :
echo $
电脑应该会告诉你你刚刚设定的那个值。
相信这样子应该懂了,现在继续吧。
IRC II and 环境参数
===================
IRC II 会去找这些环境参数来用(如果你有设定的话) :
IRCNICK : 设定你进入irc的时候所用的nickname,当然如果你没有设定的话irc
将会把 你的username当做nickname。进入irc後想换nick就用第一部份教过的
/nick.
IRCNAME : 这个蛮难解释的,就是别人用/WHO或/WHOIS看到你的hostname後面那
个括号 里面的东东。你可以高兴放什麽就放什麽。
Example :
% setenv IRCNAME 'FuZZySEt'
% se

投稿指南


