comparison README @ 7:dba89c48ce02

Updated readme.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 20 Mar 2008 02:01:03 +0000
parents d83c544c8077
children 57ed9746ede7
comparison
equal deleted inserted replaced
6:526ba3b578d7 7:dba89c48ce02
1 NNChat - extremely simple NN chat applet compatible client 1 NNChat - extremely simple NN chat applet compatible client
2 ========================================================== 2 ==========================================================
3 Written and designed by Matti 'ccr' Hämäläinen 3 Written and designed by Anonymous Finnish Guy (C) Copyright 2008
4 (C) Copyright 2008 Tecnic Software productions (TNSP) 4
5
6 Distributed under DWETFYWTPL (Do What Ever The Fuck You Want
7 To Public License), see file COPYING for more information.
8
9
10 What is this?
11 -------------
12 A extremely simple telnet-style client compatible with NewbieNudes.com
13 chatroom protocol. There is practically no user interface, the lines
14 you type will be sent to the chat when you press enter (empty lines
15 won't be sent).
16
17 Lines prefixed with '@' will be sent "raw", see the end of this document
18 for what you can do with it...
19
20
21 !!! BIG FAT WARNING !!!
22 -----------------------
23 The moderators of NN and site operators apparently don't like this kind
24 of "disruption", like this client enables you to do. I got banned from
25 the chat and also gained an infectuous IP-ban ...
26
27
28 If you get yourself banned for using this client, well -- you were warned.
29
30
31 Usage
32 -----
33 See the help, 'nnchat --help' for options. By default it connects
34 to the Members Only chat (port 8005). By using other ports (option -p)
35 you can connect to Passion Pit (8003) and free for all (8002) chats.
36
37 Connect as registered user to members only chat:
38 > nnchat -v username password
39
40 Connect as guest to free for all main chat:
41 > nnchat -v -p 8002 AnonymousAndy ""
5 42
6 43
7 44
8 Some interesting codes 45 Some interesting notes
9 ---------------------- 46 ----------------------
47 Because this client is capable of sending unescaped ("raw") text to the
48 server, and because the server and original client itself do not perform
49 any kind of input sanitization, you can do some interesting things ...
50
51 The Flash-based chat uses Flash-plugin's simple HTML-rendering features
52 for the main window. Thus few HTML codes are supported and can be used
53 arbitrarily to format the text - you can change the font size and colours,
54 etc. Some examples of working tags:
55
56
10 <font size='20'>huge big text</font> 57 <font size='20'>huge big text</font>
11 58
12 <b><font color='#00FF00'>--,--'</font><font color='#FF0000'>&lt;@</font></b> 59 <b><font color='#00FF00'>--,--'</font><font color='#FF0000'>&lt;@</font></b>
13 60
14 <u>underlined</u> 61 <u>underlined</u>
15 62
16 <b>bold</b> 63 <b>bold</b>
17 64
18 <i>italic</i> 65 <i>italic</i>
66
67
68 Notice that you have to prefix the line with '@' to send unescaped text, for
69 example:
70
71 @hello <u>everyone</u>!
72