aboutsummaryrefslogtreecommitdiff
path: root/doc/commands.txt
blob: da820d4b961b24cef9e76d255feda56d2fd2c351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Anything starting with a / is a command, unless it starts with
*two* / in which case the first one is removed and the rest is
sent as channel/query text.

Example: someone asks you where the password file is on UNIX. If you
reply "/etc/passwd", that would be considered a command. You type
"//etc/passwd" and the string "/etc/passwd" gets sent to the channel.

Anything that starts with / that isn't listed here gets sent to the
IRC server as-is, minus the /. That's why /nick, /who, /whois aren't
listed here, for instance.

--------------------------------------------------------------------
/j <channel> [<channel> ...]
/join <channel> [<channel> ...]

Joins one or more channels, creates new screens if possible. If a
screen can't be created, channel text will be sent to the [server]
screen, and "/m #channel" must be used, to send to the channel.

Also, you can use "/join 0" to leave (part) every channel you're
in. If you do this, the channel screens won't be closed.

The IRC protocol has an optional rarely-used "key" parameter, which
works like a password to get into a channel. This isn't directly
supported in FujiNetChat, but you can do this:

  /quote join <channel> <key>
  /query <channel>

...although that channel won't be automatically rejoined if you
disconnect and reconnect.

--------------------------------------------------------------------
/j1 <channel> [<channel> ...]
/join1 <channel> [<channel> ...]

Joins a channel without creating a new screen. Channel text will be
sent to the [server] screen. Use "/m #channel" to send to the channel.

--------------------------------------------------------------------
/m <nick|channel> <text>
/msg <nick|channel> <text>

Send a message to a nick or channel.

--------------------------------------------------------------------
/q <nick|channel> [<nick|channel> ...]
/query <nick|channel> [<nick|channel> ...]

Creates screens for messages to/from one or more nicks, if possible.
Can also be a channels, which creates channel screens for a channels
that doesn't already have their own screens.

--------------------------------------------------------------------
/quit [<msg>]
Quits IRC with optional quit message.

--------------------------------------------------------------------
/p [<channel>] [<msg>]
/part [<channel>] [<msg>]

Parts (leaves) a channel. If no channel is given, the current screen's
channel is parted (if you're in a channel screen). If there's a screen
for the channel, it DOES NOT get closed (it will be re-used if you
join the channel again). To part a channel and close its screen,
use Start+Control+X.

--------------------------------------------------------------------
/names [<channel>]

Shows the list of users in a channel. Uses the current screen's channel,
if no <channel> given. On most networks, it's not very useful to use
/names on a channel you haven't joined.

--------------------------------------------------------------------
/topic [<channel>]

Shows the channel topic and its creator. With no <channel>, uses the
current screen's channel.

--------------------------------------------------------------------
/ping [<nick>]

With no argument: ping the server. With arg: CTCP ping the nick.
When the ping response is received, the latency (round trip time)
will be calculated and printed in the [server] screen.

--------------------------------------------------------------------
/me <action>

CTCP ACTION. Only works in a channel or query screen (eventually
it'll work in [server] and [private] too)

--------------------------------------------------------------------
/ver [<nick>]

With <nick>, sends a CTCP VERSION request. Without <nick>, gets
the server's version information.

--------------------------------------------------------------------
/info [<nick>]

With <nick>, CTCP CLIENTINFO. Without <nick>, INFO command for the
server.

--------------------------------------------------------------------
/ctcp <nick> <command> [<text>]

Send arbitrary CTCP commands.

--------------------------------------------------------------------
/list <arg(s)>

This command will be sent to the server as-is. The only reason it's a
local command is so the argument can be required: sending LIST without
any arguments lists every channel on the server, which isn't useful.

--------------------------------------------------------------------
/color <bg> [<fg>] [<status-active>] [<status-highlight>]

Set colors. This should be on a per-screen basis, eventually.
TODO: this only takes bg and fg arguments, currently.

--------------------------------------------------------------------
/click

Toggles the keyclick sound, if you're on an Atari XL or XE. On the
400/800, it does nothing (sorry).

--------------------------------------------------------------------
/chans

List all channels we've joined. This will actually be limited to
something like 20 (who joins more than 20 channels anyway?)
TODO: not implemented yet.

--------------------------------------------------------------------
/quote <cmd>

Send raw IRC protocol to the server. This bypasses local command
parsing.

--------------------------------------------------------------------
/alert <number>

Set the type of alert that happens when you're PMed or highlighted
in a channel. 0 = none, 1 = beep, 2 = flash, 3 = beep and flash.


--------------------------------------------------------------------
/reset

Send a SIO command to the FujiNet to reset it. This does the same
thing as pressing the FujiNet's reset button. This command is
for testing, and may be removed at some point.