diff options
author | Adam Frisby | 2008-02-04 10:23:13 +0000 |
---|---|---|
committer | Adam Frisby | 2008-02-04 10:23:13 +0000 |
commit | 760ece2595caa7a47205bd96e207e431a548f01d (patch) | |
tree | b2cb9601ae0baba1ebf3e96afd0ec8adf94368d2 /bin/OpenSim.ini.example | |
parent | Added daTwitch into the CONTRIBUTORS.txt file. (diff) | |
download | opensim-SC_OLD-760ece2595caa7a47205bd96e207e431a548f01d.zip opensim-SC_OLD-760ece2595caa7a47205bd96e207e431a548f01d.tar.gz opensim-SC_OLD-760ece2595caa7a47205bd96e207e431a548f01d.tar.bz2 opensim-SC_OLD-760ece2595caa7a47205bd96e207e431a548f01d.tar.xz |
* Chat Message format patch from kinoc (#443) Thanks!
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 55d261c..3bcbdd2 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -18,10 +18,10 @@ physics = basicphysics | |||
18 | 18 | ||
19 | ; *** Prim Storage - only leave one storage_plugin uncommented *** | 19 | ; *** Prim Storage - only leave one storage_plugin uncommented *** |
20 | ; --- The NullStorage stores nothing - effectively disabling persistence: | 20 | ; --- The NullStorage stores nothing - effectively disabling persistence: |
21 | ; storage_plugin = "OpenSim.DataStore.NullStorage.dll" | 21 | storage_plugin = "OpenSim.DataStore.NullStorage.dll" |
22 | 22 | ||
23 | ; --- To use sqlite as region storage: | 23 | ; --- To use sqlite as region storage: |
24 | storage_plugin = "OpenSim.Framework.Data.SQLite.dll" | 24 | ;storage_plugin = "OpenSim.Framework.Data.SQLite.dll" |
25 | storage_connection_string="URI=file:OpenSim.db,version=3"; | 25 | storage_connection_string="URI=file:OpenSim.db,version=3"; |
26 | 26 | ||
27 | ; --- To use MySQL storage, supply your own connectionstring (this is only an example): | 27 | ; --- To use MySQL storage, supply your own connectionstring (this is only an example): |
@@ -99,6 +99,15 @@ shout_distance = 100 | |||
99 | ;server = name.of.irc.server.on.the.net | 99 | ;server = name.of.irc.server.on.the.net |
100 | ;nick = OpenSimBotNameProbablyMakeThisShorter | 100 | ;nick = OpenSimBotNameProbablyMakeThisShorter |
101 | ;channel = #the_irc_channel_you_want_to_connect_to | 101 | ;channel = #the_irc_channel_you_want_to_connect_to |
102 | ;port = 6667 | ||
103 | ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message | ||
104 | ; must start with "PRIVMSG {0} : " or irc server will get upset | ||
105 | ;for <bot>:<user in region> :<message> | ||
106 | ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}" | ||
107 | ;for <bot>:<message> - <user of region> : | ||
108 | msgformat = "PRIVMSG {0} : {3} - {1} of {2}" | ||
109 | ;for <bot>:<message> - from <user> : | ||
110 | ;msgformat = "PRIVMSG {0} : {3} - from {1}" | ||
102 | 111 | ||
103 | ; Uncomment the following to control the progression of daytime | 112 | ; Uncomment the following to control the progression of daytime |
104 | ; in the Sim. The defaults are what is shown below | 113 | ; in the Sim. The defaults are what is shown below |
@@ -231,3 +240,4 @@ CompileWithDebugInformation=true | |||
231 | ; Remove old scripts on next startup | 240 | ; Remove old scripts on next startup |
232 | CleanUpOldScriptsOnStartup=true | 241 | CleanUpOldScriptsOnStartup=true |
233 | 242 | ||
243 | |||