aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/XEngine/XEngine.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
index 211e313..db6a407 100644
--- a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
+++ b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
@@ -345,22 +345,22 @@ namespace OpenSim.Region.ScriptEngine.XEngine
345 } 345 }
346 346
347 MainConsole.Instance.Commands.AddCommand( 347 MainConsole.Instance.Commands.AddCommand(
348 "scripts", false, "xengine status", "xengine status", "Show status information", 348 "Scripts", false, "xengine status", "xengine status", "Show status information",
349 "Show status information on the script engine.", 349 "Show status information on the script engine.",
350 HandleShowStatus); 350 HandleShowStatus);
351 351
352 MainConsole.Instance.Commands.AddCommand( 352 MainConsole.Instance.Commands.AddCommand(
353 "scripts", false, "scripts show", "scripts show [<script-item-uuid>]", "Show script information", 353 "Scripts", false, "scripts show", "scripts show [<script-item-uuid>]", "Show script information",
354 "Show information on all scripts known to the script engine." 354 "Show information on all scripts known to the script engine."
355 + "If a <script-item-uuid> is given then only information on that script will be shown.", 355 + "If a <script-item-uuid> is given then only information on that script will be shown.",
356 HandleShowScripts); 356 HandleShowScripts);
357 357
358 MainConsole.Instance.Commands.AddCommand( 358 MainConsole.Instance.Commands.AddCommand(
359 "scripts", false, "show scripts", "show scripts [<script-item-uuid>]", "Show script information", 359 "Scripts", false, "show scripts", "show scripts [<script-item-uuid>]", "Show script information",
360 "Synonym for scripts show command", HandleShowScripts); 360 "Synonym for scripts show command", HandleShowScripts);
361 361
362 MainConsole.Instance.Commands.AddCommand( 362 MainConsole.Instance.Commands.AddCommand(
363 "scripts", false, "scripts suspend", "scripts suspend [<script-item-uuid>]", "Suspends all running scripts", 363 "Scripts", false, "scripts suspend", "scripts suspend [<script-item-uuid>]", "Suspends all running scripts",
364 "Suspends all currently running scripts. This only suspends event delivery, it will not suspend a" 364 "Suspends all currently running scripts. This only suspends event delivery, it will not suspend a"
365 + " script that is currently processing an event.\n" 365 + " script that is currently processing an event.\n"
366 + "Suspended scripts will continue to accumulate events but won't process them.\n" 366 + "Suspended scripts will continue to accumulate events but won't process them.\n"
@@ -368,20 +368,20 @@ namespace OpenSim.Region.ScriptEngine.XEngine
368 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleSuspendScript)); 368 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleSuspendScript));
369 369
370 MainConsole.Instance.Commands.AddCommand( 370 MainConsole.Instance.Commands.AddCommand(
371 "scripts", false, "scripts resume", "scripts resume [<script-item-uuid>]", "Resumes all suspended scripts", 371 "Scripts", false, "scripts resume", "scripts resume [<script-item-uuid>]", "Resumes all suspended scripts",
372 "Resumes all currently suspended scripts.\n" 372 "Resumes all currently suspended scripts.\n"
373 + "Resumed scripts will process all events accumulated whilst suspended." 373 + "Resumed scripts will process all events accumulated whilst suspended."
374 + "If a <script-item-uuid> is given then only that script will be resumed. Otherwise, all suitable scripts are resumed.", 374 + "If a <script-item-uuid> is given then only that script will be resumed. Otherwise, all suitable scripts are resumed.",
375 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleResumeScript)); 375 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleResumeScript));
376 376
377 MainConsole.Instance.Commands.AddCommand( 377 MainConsole.Instance.Commands.AddCommand(
378 "scripts", false, "scripts stop", "scripts stop [<script-item-uuid>]", "Stops all running scripts", 378 "Scripts", false, "scripts stop", "scripts stop [<script-item-uuid>]", "Stops all running scripts",
379 "Stops all running scripts." 379 "Stops all running scripts."
380 + "If a <script-item-uuid> is given then only that script will be stopped. Otherwise, all suitable scripts are stopped.", 380 + "If a <script-item-uuid> is given then only that script will be stopped. Otherwise, all suitable scripts are stopped.",
381 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStopScript)); 381 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStopScript));
382 382
383 MainConsole.Instance.Commands.AddCommand( 383 MainConsole.Instance.Commands.AddCommand(
384 "scripts", false, "scripts start", "scripts start [<script-item-uuid>]", "Starts all stopped scripts", 384 "Scripts", false, "scripts start", "scripts start [<script-item-uuid>]", "Starts all stopped scripts",
385 "Starts all stopped scripts." 385 "Starts all stopped scripts."
386 + "If a <script-item-uuid> is given then only that script will be started. Otherwise, all suitable scripts are started.", 386 + "If a <script-item-uuid> is given then only that script will be started. Otherwise, all suitable scripts are started.",
387 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStartScript)); 387 (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStartScript));