aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorMW2007-09-04 20:21:03 +0000
committerMW2007-09-04 20:21:03 +0000
commitc014ea1510137b103dfa9b98dc01bf2081dad382 (patch)
treeda417ac577b198c23dd0ddc1f0f779520a3ce790 /OpenSim/Region/Environment/Scenes
parentFixed it so "shutdown" command works when a region is set as the active conso... (diff)
downloadopensim-SC_OLD-c014ea1510137b103dfa9b98dc01bf2081dad382.zip
opensim-SC_OLD-c014ea1510137b103dfa9b98dc01bf2081dad382.tar.gz
opensim-SC_OLD-c014ea1510137b103dfa9b98dc01bf2081dad382.tar.bz2
opensim-SC_OLD-c014ea1510137b103dfa9b98dc01bf2081dad382.tar.xz
Added partial help info when calling "help" command with a region set.
Added AddDynamicTextureData() to DynamicTextureModule, so that a script (or another module even) can create a dynamic texture by passing a string with the data in, rather than a url. This could be used for anything from a script passing a basic text string (and having it rendered to a texture) or the script building its own html document.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index dca4222..3ea9678 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1233,6 +1233,16 @@ namespace OpenSim.Region.Environment.Scenes
1233 { 1233 {
1234 switch (command) 1234 switch (command)
1235 { 1235 {
1236 case "help":
1237 MainLog.Instance.Error("alert - send alert to a designated user or all users.");
1238 MainLog.Instance.Error(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive.");
1239 MainLog.Instance.Error(" alert general [Message] - send an alert to all users.");
1240 MainLog.Instance.Error("backup - trigger a region backup");
1241 MainLog.Instance.Error("load-xml [filename] - load prims from a XML file into current region");
1242 MainLog.Instance.Error("save-xml [filename] - save prims from current region to a XML file");
1243 MainLog.Instance.Error("show users - show info about connected users in the current region.");
1244 MainLog.Instance.Error("shutdown - disconnect all clients and shutdown.");
1245 break;
1236 case "show": 1246 case "show":
1237 if (cmdparams.Length > 0) 1247 if (cmdparams.Length > 0)
1238 { 1248 {