aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorAdam Frisby2008-02-04 10:23:13 +0000
committerAdam Frisby2008-02-04 10:23:13 +0000
commit760ece2595caa7a47205bd96e207e431a548f01d (patch)
treeb2cb9601ae0baba1ebf3e96afd0ec8adf94368d2 /bin
parentAdded daTwitch into the CONTRIBUTORS.txt file. (diff)
downloadopensim-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 'bin')
-rw-r--r--bin/OpenSim.ini.example14
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" 21storage_plugin = "OpenSim.DataStore.NullStorage.dll"
22 22
23; --- To use sqlite as region storage: 23; --- To use sqlite as region storage:
24storage_plugin = "OpenSim.Framework.Data.SQLite.dll" 24;storage_plugin = "OpenSim.Framework.Data.SQLite.dll"
25storage_connection_string="URI=file:OpenSim.db,version=3"; 25storage_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> :
108msgformat = "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
232CleanUpOldScriptsOnStartup=true 241CleanUpOldScriptsOnStartup=true
233 242
243