diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 1395030..a09b903 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -251,14 +251,20 @@ namespace OpenSim | |||
251 | "Save named prim to XML2", SavePrimsXml2); | 251 | "Save named prim to XML2", SavePrimsXml2); |
252 | 252 | ||
253 | m_console.Commands.AddCommand("region", false, "load oar", | 253 | m_console.Commands.AddCommand("region", false, "load oar", |
254 | "load oar [--merge] [--skip-assets] <oar name>", | 254 | "load oar [--merge] [--skip-assets] [<OAR path>]", |
255 | "Load a region's data from OAR archive. --merge will merge the oar with the existing scene. --skip-assets will load the oar but ignore the assets it contains", | 255 | "Load a region's data from an OAR archive.", |
256 | "--merge will merge the OAR with the existing scene." + Environment.NewLine | ||
257 | + "--skip-assets will load the OAR but ignore the assets it contains." + Environment.NewLine | ||
258 | + "The path can be either a filesystem location or a URI." | ||
259 | + " If this is not given then the command looks for an OAR named region.oar in the current directory.", | ||
256 | LoadOar); | 260 | LoadOar); |
257 | 261 | ||
258 | m_console.Commands.AddCommand("region", false, "save oar", | 262 | m_console.Commands.AddCommand("region", false, "save oar", |
259 | "save oar <oar name>", | 263 | "save oar [<OAR path>]", |
260 | "Save a region's data to an OAR archive", | 264 | "Save a region's data to an OAR archive.", |
261 | "More information on forthcoming options here soon", SaveOar); | 265 | "The OAR path must be a filesystem path." |
266 | + " If this is not given then the oar is saved to region.oar in the current directory.", | ||
267 | SaveOar); | ||
262 | 268 | ||
263 | m_console.Commands.AddCommand("region", false, "edit scale", | 269 | m_console.Commands.AddCommand("region", false, "edit scale", |
264 | "edit scale <name> <x> <y> <z>", | 270 | "edit scale <name> <x> <y> <z>", |