diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/XEngine/XEngine.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs index d1cac9c..b433430 100644 --- a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs +++ b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs | |||
@@ -277,22 +277,22 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
277 | } | 277 | } |
278 | 278 | ||
279 | MainConsole.Instance.Commands.AddCommand( | 279 | MainConsole.Instance.Commands.AddCommand( |
280 | "scripts", false, "xengine status", "xengine status", "Show status information", | 280 | "Scripts", false, "xengine status", "xengine status", "Show status information", |
281 | "Show status information on the script engine.", | 281 | "Show status information on the script engine.", |
282 | HandleShowStatus); | 282 | HandleShowStatus); |
283 | 283 | ||
284 | MainConsole.Instance.Commands.AddCommand( | 284 | MainConsole.Instance.Commands.AddCommand( |
285 | "scripts", false, "scripts show", "scripts show [<script-item-uuid>]", "Show script information", | 285 | "Scripts", false, "scripts show", "scripts show [<script-item-uuid>]", "Show script information", |
286 | "Show information on all scripts known to the script engine." | 286 | "Show information on all scripts known to the script engine." |
287 | + "If a <script-item-uuid> is given then only information on that script will be shown.", | 287 | + "If a <script-item-uuid> is given then only information on that script will be shown.", |
288 | HandleShowScripts); | 288 | HandleShowScripts); |
289 | 289 | ||
290 | MainConsole.Instance.Commands.AddCommand( | 290 | MainConsole.Instance.Commands.AddCommand( |
291 | "scripts", false, "show scripts", "show scripts [<script-item-uuid>]", "Show script information", | 291 | "Scripts", false, "show scripts", "show scripts [<script-item-uuid>]", "Show script information", |
292 | "Synonym for scripts show command", HandleShowScripts); | 292 | "Synonym for scripts show command", HandleShowScripts); |
293 | 293 | ||
294 | MainConsole.Instance.Commands.AddCommand( | 294 | MainConsole.Instance.Commands.AddCommand( |
295 | "scripts", false, "scripts suspend", "scripts suspend [<script-item-uuid>]", "Suspends all running scripts", | 295 | "Scripts", false, "scripts suspend", "scripts suspend [<script-item-uuid>]", "Suspends all running scripts", |
296 | "Suspends all currently running scripts. This only suspends event delivery, it will not suspend a" | 296 | "Suspends all currently running scripts. This only suspends event delivery, it will not suspend a" |
297 | + " script that is currently processing an event.\n" | 297 | + " script that is currently processing an event.\n" |
298 | + "Suspended scripts will continue to accumulate events but won't process them.\n" | 298 | + "Suspended scripts will continue to accumulate events but won't process them.\n" |
@@ -300,20 +300,20 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
300 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleSuspendScript)); | 300 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleSuspendScript)); |
301 | 301 | ||
302 | MainConsole.Instance.Commands.AddCommand( | 302 | MainConsole.Instance.Commands.AddCommand( |
303 | "scripts", false, "scripts resume", "scripts resume [<script-item-uuid>]", "Resumes all suspended scripts", | 303 | "Scripts", false, "scripts resume", "scripts resume [<script-item-uuid>]", "Resumes all suspended scripts", |
304 | "Resumes all currently suspended scripts.\n" | 304 | "Resumes all currently suspended scripts.\n" |
305 | + "Resumed scripts will process all events accumulated whilst suspended." | 305 | + "Resumed scripts will process all events accumulated whilst suspended." |
306 | + "If a <script-item-uuid> is given then only that script will be resumed. Otherwise, all suitable scripts are resumed.", | 306 | + "If a <script-item-uuid> is given then only that script will be resumed. Otherwise, all suitable scripts are resumed.", |
307 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleResumeScript)); | 307 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleResumeScript)); |
308 | 308 | ||
309 | MainConsole.Instance.Commands.AddCommand( | 309 | MainConsole.Instance.Commands.AddCommand( |
310 | "scripts", false, "scripts stop", "scripts stop [<script-item-uuid>]", "Stops all running scripts", | 310 | "Scripts", false, "scripts stop", "scripts stop [<script-item-uuid>]", "Stops all running scripts", |
311 | "Stops all running scripts." | 311 | "Stops all running scripts." |
312 | + "If a <script-item-uuid> is given then only that script will be stopped. Otherwise, all suitable scripts are stopped.", | 312 | + "If a <script-item-uuid> is given then only that script will be stopped. Otherwise, all suitable scripts are stopped.", |
313 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStopScript)); | 313 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStopScript)); |
314 | 314 | ||
315 | MainConsole.Instance.Commands.AddCommand( | 315 | MainConsole.Instance.Commands.AddCommand( |
316 | "scripts", false, "scripts start", "scripts start [<script-item-uuid>]", "Starts all stopped scripts", | 316 | "Scripts", false, "scripts start", "scripts start [<script-item-uuid>]", "Starts all stopped scripts", |
317 | "Starts all stopped scripts." | 317 | "Starts all stopped scripts." |
318 | + "If a <script-item-uuid> is given then only that script will be started. Otherwise, all suitable scripts are started.", | 318 | + "If a <script-item-uuid> is given then only that script will be started. Otherwise, all suitable scripts are started.", |
319 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStartScript)); | 319 | (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStartScript)); |