diff options
Diffstat (limited to '')
3 files changed, 93 insertions, 0 deletions
diff --git a/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example new file mode 100644 index 0000000..4e39256 --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example | |||
@@ -0,0 +1,20 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Chat] | ||
10 | ; Controls whether the chat module is enabled. Default is true. | ||
11 | enabled = true; | ||
12 | |||
13 | ; Distance in meters that whispers should travel. Default is 10m | ||
14 | whisper_distance = 10 | ||
15 | |||
16 | ; Distance in meters that ordinary chat should travel. Default is 30m | ||
17 | say_distance = 30 | ||
18 | |||
19 | ; Distance in meters that shouts should travel. Default is 100m | ||
20 | shout_distance = 100 | ||
diff --git a/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example new file mode 100644 index 0000000..a94a89e --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example | |||
@@ -0,0 +1,61 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | ; Uncomment the following for IRC bridge | ||
10 | ; experimental, so if it breaks... keep both parts... yada yada | ||
11 | ; also, not good error detection when it fails | ||
12 | ;[IRC] | ||
13 | ;enabled = true ; you need to set this otherwise it won't connect | ||
14 | ;server = name.of.irc.server.on.the.net | ||
15 | ;; user password - only use this if the server requires one | ||
16 | ;password = mypass | ||
17 | ;nick = OpenSimBotNameProbablyMakeThisShorter | ||
18 | ;channel = #the_irc_channel_you_want_to_connect_to | ||
19 | ;port = 6667 | ||
20 | ;; channel to listen for configuration commands | ||
21 | ;commands_enabled = false | ||
22 | ;command_channel = 2777 | ||
23 | ;report_clients = true | ||
24 | ;; relay private chat connections | ||
25 | ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels | ||
26 | ;; relay_private_channel_out -- channel to send messages out to the IRC bridge | ||
27 | ;; relay_private_channel_in -- channel to receive message from the IRC bridge | ||
28 | ;; relay_chat = false: IRC bridge will not relay normal chat | ||
29 | ;; access_password -- simple security device | ||
30 | ;; | ||
31 | ;; so, to just relay chat from an IRC channel to in-world region and vice versa: | ||
32 | ;; | ||
33 | ;; relay_private_channels = false | ||
34 | ;; relay_chat = true | ||
35 | ;; | ||
36 | ;; to relay chat only to/from private in-world channels: | ||
37 | ;; | ||
38 | ;; relay_chat = false | ||
39 | ;; relay_private_channels = true | ||
40 | ;; relay_private_channel_in = 2226 | ||
41 | ;; relay_private_channel_out = 2225 | ||
42 | ;; | ||
43 | ;; in this example, all chat coming in from IRC will be send out via | ||
44 | ;; in-world channel 2226, and all chat from in-world channel 2225 will | ||
45 | ;; be relayed to the IRC channel. | ||
46 | ;; | ||
47 | ;relay_private_channels = false | ||
48 | ;relay_private_channel_in = 2226 | ||
49 | ;relay_private_channel_out = 2225 | ||
50 | ;relay_chat = true | ||
51 | ;access_password = foobar | ||
52 | |||
53 | ;fallback_region = name of "default" region | ||
54 | ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message | ||
55 | ; must start with "PRIVMSG {0} : " or irc server will get upset | ||
56 | ;for <bot>:<user in region> :<message> | ||
57 | ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}" | ||
58 | ;for <bot>:<message> - <user of region> : | ||
59 | msgformat = "PRIVMSG {0} : {3} - {1} of {2}" | ||
60 | ;for <bot>:<message> - from <user> : | ||
61 | ;msgformat = "PRIVMSG {0} : {3} - from {1}" | ||
diff --git a/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example new file mode 100644 index 0000000..f7f708b --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example | |||
@@ -0,0 +1,12 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Messaging] | ||
10 | ; Control which region module is used for instant messaging. | ||
11 | ; Default is InstantMessageModule (this is the name of the core IM module as well as the setting) | ||
12 | InstantMessageModule = InstantMessageModule | ||