evennia/docs/latest/api/evennia.commands.default.syscommands.html
Evennia docbuilder action 243d596662 Updated HTML docs.
2025-08-15 18:14:21 +00:00

360 lines
No EOL
33 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" data-content_root="../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>evennia.commands.default.syscommands &#8212; Evennia latest documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d75fae25" />
<link rel="stylesheet" type="text/css" href="../_static/nature.css?v=279e0f84" />
<link rel="stylesheet" type="text/css" href="../_static/custom.css?v=e4a91a55" />
<script src="../_static/documentation_options.js?v=c6e86fd7"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="icon" href="../_static/favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="evennia.commands.default.system" href="evennia.commands.default.system.html" />
<link rel="prev" title="evennia.commands.default.muxcommand" href="evennia.commands.default.muxcommand.html" />
</head><body>
<div class="related" role="navigation" aria-label="Related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="evennia.commands.default.system.html" title="evennia.commands.default.system"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="evennia.commands.default.muxcommand.html" title="evennia.commands.default.muxcommand"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">Evennia</a> &#187;</li>
<li class="nav-item nav-item-1"><a href="../Evennia-API.html" >API Summary</a> &#187;</li>
<li class="nav-item nav-item-2"><a href="evennia-api.html" >evennia</a> &#187;</li>
<li class="nav-item nav-item-3"><a href="evennia.html" >evennia</a> &#187;</li>
<li class="nav-item nav-item-4"><a href="evennia.commands.html" >evennia.commands</a> &#187;</li>
<li class="nav-item nav-item-5"><a href="evennia.commands.default.html" accesskey="U">evennia.commands.default</a> &#187;</li>
<li class="nav-item nav-item-this"><a href="">evennia.commands.default.syscommands</a></li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="module-evennia.commands.default.syscommands">
<span id="evennia-commands-default-syscommands"></span><h1>evennia.commands.default.syscommands<a class="headerlink" href="#module-evennia.commands.default.syscommands" title="Link to this heading"></a></h1>
<p>System commands</p>
<p>These are the default commands called by the system commandhandler
when various exceptions occur. If one of these commands are not
implemented and part of the current cmdset, the engine falls back
to a default solution instead.</p>
<p>Some system commands are shown in this module
as a REFERENCE only (they are not all added to Evennias
default cmdset since they dont currently do anything differently from the
default backup systems hard-wired in the engine).</p>
<p>Overloading these commands in a cmdset can be used to create
interesting effects. An example is using the NoMatch system command
to implement a line-editor where you dont have to start each
line with a command (if there is no match to a known command,
the line is just added to the editor buffer).</p>
<dl class="py class">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput">
<em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">evennia.commands.default.syscommands.</span></span><span class="sig-name descname"><span class="pre">SystemNoInput</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">**</span></span><span class="n"><span class="pre">kwargs</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemNoInput"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput" title="Link to this definition"></a></dt>
<dd><p>Bases: <a class="reference internal" href="evennia.commands.default.muxcommand.html#evennia.commands.default.muxcommand.MuxCommand" title="evennia.commands.default.muxcommand.MuxCommand"><code class="xref py py-class docutils literal notranslate"><span class="pre">MuxCommand</span></code></a></p>
<p>This is called when there is no input given</p>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.key">
<span class="sig-name descname"><span class="pre">key</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'__noinput_command'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.key" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.locks">
<span class="sig-name descname"><span class="pre">locks</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.locks" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.func">
<span class="sig-name descname"><span class="pre">func</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemNoInput.func"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.func" title="Link to this definition"></a></dt>
<dd><p>Do nothing.</p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.aliases">
<span class="sig-name descname"><span class="pre">aliases</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">[]</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.aliases" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.help_category">
<span class="sig-name descname"><span class="pre">help_category</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'general'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.help_category" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.lock_storage">
<span class="sig-name descname"><span class="pre">lock_storage</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.lock_storage" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoInput.search_index_entry">
<span class="sig-name descname"><span class="pre">search_index_entry</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">{'aliases':</span> <span class="pre">'',</span> <span class="pre">'category':</span> <span class="pre">'general',</span> <span class="pre">'key':</span> <span class="pre">'__noinput_command',</span> <span class="pre">'no_prefix':</span> <span class="pre">'</span> <span class="pre">',</span> <span class="pre">'tags':</span> <span class="pre">'',</span> <span class="pre">'text':</span> <span class="pre">'\nThis</span> <span class="pre">is</span> <span class="pre">called</span> <span class="pre">when</span> <span class="pre">there</span> <span class="pre">is</span> <span class="pre">no</span> <span class="pre">input</span> <span class="pre">given\n'}</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoInput.search_index_entry" title="Link to this definition"></a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="py class">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch">
<em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">evennia.commands.default.syscommands.</span></span><span class="sig-name descname"><span class="pre">SystemNoMatch</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">**</span></span><span class="n"><span class="pre">kwargs</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemNoMatch"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch" title="Link to this definition"></a></dt>
<dd><p>Bases: <a class="reference internal" href="evennia.commands.default.muxcommand.html#evennia.commands.default.muxcommand.MuxCommand" title="evennia.commands.default.muxcommand.MuxCommand"><code class="xref py py-class docutils literal notranslate"><span class="pre">MuxCommand</span></code></a></p>
<p>No command was found matching the given input.</p>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.key">
<span class="sig-name descname"><span class="pre">key</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'__nomatch_command'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.key" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.locks">
<span class="sig-name descname"><span class="pre">locks</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.locks" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.func">
<span class="sig-name descname"><span class="pre">func</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemNoMatch.func"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.func" title="Link to this definition"></a></dt>
<dd><p>This is given the failed raw string as input.</p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.aliases">
<span class="sig-name descname"><span class="pre">aliases</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">[]</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.aliases" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.help_category">
<span class="sig-name descname"><span class="pre">help_category</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'general'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.help_category" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.lock_storage">
<span class="sig-name descname"><span class="pre">lock_storage</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.lock_storage" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemNoMatch.search_index_entry">
<span class="sig-name descname"><span class="pre">search_index_entry</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">{'aliases':</span> <span class="pre">'',</span> <span class="pre">'category':</span> <span class="pre">'general',</span> <span class="pre">'key':</span> <span class="pre">'__nomatch_command',</span> <span class="pre">'no_prefix':</span> <span class="pre">'</span> <span class="pre">',</span> <span class="pre">'tags':</span> <span class="pre">'',</span> <span class="pre">'text':</span> <span class="pre">'\nNo</span> <span class="pre">command</span> <span class="pre">was</span> <span class="pre">found</span> <span class="pre">matching</span> <span class="pre">the</span> <span class="pre">given</span> <span class="pre">input.\n'}</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemNoMatch.search_index_entry" title="Link to this definition"></a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="py class">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch">
<em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">evennia.commands.default.syscommands.</span></span><span class="sig-name descname"><span class="pre">SystemMultimatch</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">**</span></span><span class="n"><span class="pre">kwargs</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemMultimatch"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch" title="Link to this definition"></a></dt>
<dd><p>Bases: <a class="reference internal" href="evennia.commands.default.muxcommand.html#evennia.commands.default.muxcommand.MuxCommand" title="evennia.commands.default.muxcommand.MuxCommand"><code class="xref py py-class docutils literal notranslate"><span class="pre">MuxCommand</span></code></a></p>
<p>Multiple command matches.</p>
<p>The cmdhandler adds a special attribute matches to this
system command.</p>
<blockquote>
<div><p>matches = [(cmdname, args, cmdobj, cmdlen, mratio, raw_cmdname) , (cmdname, …), …]</p>
</div></blockquote>
<p>Here, <strong>cmdname</strong> is the commands name and <strong>args</strong> the rest of the incoming string,
without said command name. <strong>cmdobj</strong> is the Command instance, the cmdlen is
the same as len(cmdname) and mratio is a measure of how big a part of the
full input string the cmdname takes up - an exact match would be 1.0. Finally,
the <strong>raw_cmdname</strong> is the cmdname unmodified by eventual prefix-stripping.</p>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.key">
<span class="sig-name descname"><span class="pre">key</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'__multimatch_command'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.key" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.locks">
<span class="sig-name descname"><span class="pre">locks</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.locks" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.func">
<span class="sig-name descname"><span class="pre">func</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="../_modules/evennia/commands/default/syscommands.html#SystemMultimatch.func"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.func" title="Link to this definition"></a></dt>
<dd><p>Handle multiple-matches by using the at_search_result default handler.</p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.aliases">
<span class="sig-name descname"><span class="pre">aliases</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">[]</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.aliases" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.help_category">
<span class="sig-name descname"><span class="pre">help_category</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'general'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.help_category" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.lock_storage">
<span class="sig-name descname"><span class="pre">lock_storage</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'cmd:all()'</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.lock_storage" title="Link to this definition"></a></dt>
<dd></dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="evennia.commands.default.syscommands.SystemMultimatch.search_index_entry">
<span class="sig-name descname"><span class="pre">search_index_entry</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">{'aliases':</span> <span class="pre">'',</span> <span class="pre">'category':</span> <span class="pre">'general',</span> <span class="pre">'key':</span> <span class="pre">'__multimatch_command',</span> <span class="pre">'no_prefix':</span> <span class="pre">'</span> <span class="pre">',</span> <span class="pre">'tags':</span> <span class="pre">'',</span> <span class="pre">'text':</span> <span class="pre">&quot;\nMultiple</span> <span class="pre">command</span> <span class="pre">matches.\n\nThe</span> <span class="pre">cmdhandler</span> <span class="pre">adds</span> <span class="pre">a</span> <span class="pre">special</span> <span class="pre">attribute</span> <span class="pre">'matches'</span> <span class="pre">to</span> <span class="pre">this\nsystem</span> <span class="pre">command.\n\n</span>&#160; <span class="pre">matches</span> <span class="pre">=</span> <span class="pre">[(cmdname,</span> <span class="pre">args,</span> <span class="pre">cmdobj,</span> <span class="pre">cmdlen,</span> <span class="pre">mratio,</span> <span class="pre">raw_cmdname)</span> <span class="pre">,</span> <span class="pre">(cmdname,</span> <span class="pre">...),</span> <span class="pre">...]\n\nHere,</span> <span class="pre">`cmdname`</span> <span class="pre">is</span> <span class="pre">the</span> <span class="pre">command's</span> <span class="pre">name</span> <span class="pre">and</span> <span class="pre">`args`</span> <span class="pre">the</span> <span class="pre">rest</span> <span class="pre">of</span> <span class="pre">the</span> <span class="pre">incoming</span> <span class="pre">string,\nwithout</span> <span class="pre">said</span> <span class="pre">command</span> <span class="pre">name.</span> <span class="pre">`cmdobj`</span> <span class="pre">is</span> <span class="pre">the</span> <span class="pre">Command</span> <span class="pre">instance,</span> <span class="pre">the</span> <span class="pre">cmdlen</span> <span class="pre">is\nthe</span> <span class="pre">same</span> <span class="pre">as</span> <span class="pre">len(cmdname)</span> <span class="pre">and</span> <span class="pre">mratio</span> <span class="pre">is</span> <span class="pre">a</span> <span class="pre">measure</span> <span class="pre">of</span> <span class="pre">how</span> <span class="pre">big</span> <span class="pre">a</span> <span class="pre">part</span> <span class="pre">of</span> <span class="pre">the\nfull</span> <span class="pre">input</span> <span class="pre">string</span> <span class="pre">the</span> <span class="pre">cmdname</span> <span class="pre">takes</span> <span class="pre">up</span> <span class="pre">-</span> <span class="pre">an</span> <span class="pre">exact</span> <span class="pre">match</span> <span class="pre">would</span> <span class="pre">be</span> <span class="pre">1.0.</span> <span class="pre">Finally,\nthe</span> <span class="pre">`raw_cmdname`</span> <span class="pre">is</span> <span class="pre">the</span> <span class="pre">cmdname</span> <span class="pre">unmodified</span> <span class="pre">by</span> <span class="pre">eventual</span> <span class="pre">prefix-stripping.\n\n&quot;}</span></em><a class="headerlink" href="#evennia.commands.default.syscommands.SystemMultimatch.search_index_entry" title="Link to this definition"></a></dt>
<dd></dd></dl>
</dd></dl>
</section>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<p class="logo"><a href="../index.html">
<img class="logo" src="../_static/evennia_logo.png" alt="Logo of Evennia"/>
</a></p>
<search id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script>
<h3><a href="../index.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">evennia.commands.default.syscommands</a><ul>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput"><code class="docutils literal notranslate"><span class="pre">SystemNoInput</span></code></a><ul>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.key"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.key</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.locks"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.locks</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.func"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.func()</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.aliases"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.aliases</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.help_category"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.help_category</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.lock_storage"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.lock_storage</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoInput.search_index_entry"><code class="docutils literal notranslate"><span class="pre">SystemNoInput.search_index_entry</span></code></a></li>
</ul>
</li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch</span></code></a><ul>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.key"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.key</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.locks"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.locks</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.func"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.func()</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.aliases"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.aliases</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.help_category"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.help_category</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.lock_storage"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.lock_storage</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemNoMatch.search_index_entry"><code class="docutils literal notranslate"><span class="pre">SystemNoMatch.search_index_entry</span></code></a></li>
</ul>
</li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch</span></code></a><ul>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.key"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.key</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.locks"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.locks</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.func"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.func()</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.aliases"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.aliases</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.help_category"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.help_category</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.lock_storage"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.lock_storage</span></code></a></li>
<li><a class="reference internal" href="#evennia.commands.default.syscommands.SystemMultimatch.search_index_entry"><code class="docutils literal notranslate"><span class="pre">SystemMultimatch.search_index_entry</span></code></a></li>
</ul>
</li>
</ul>
</li>
</ul>
<div>
<h4>Previous topic</h4>
<p class="topless"><a href="evennia.commands.default.muxcommand.html"
title="previous chapter">evennia.commands.default.muxcommand</a></p>
</div>
<div>
<h4>Next topic</h4>
<p class="topless"><a href="evennia.commands.default.system.html"
title="next chapter">evennia.commands.default.system</a></p>
</div>
<div role="note" aria-label="source link">
<!--h3>This Page</h3-->
<ul class="this-page-menu">
<li><a href="../_sources/api/evennia.commands.default.syscommands.md.txt"
rel="nofollow">Show Page Source</a></li>
</ul>
</div><h3>Links</h3>
<ul>
<li><a href="https://www.evennia.com/docs/latest/index.html">Documentation Top</a> </li>
<li><a href="https://www.evennia.com">Evennia Home</a> </li>
<li><a href="https://github.com/evennia/evennia">Github</a> </li>
<li><a href="http://games.evennia.com">Game Index</a> </li>
<li>
<a href="https://discord.gg/AJJpcRUhtF">Discord</a> -
<a href="https://github.com/evennia/evennia/discussions">Discussions</a> -
<a href="https://evennia.blogspot.com/">Blog</a>
</li>
</ul>
<h3>Doc Versions</h3>
<ul>
<li>
<a href="https://www.evennia.com/docs/latest/index.html">latest (main branch)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/5.x/index.html">v5.0.0 branch (outdated)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/4.x/index.html">v4.0.0 branch (outdated)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/3.x/index.html">v3.0.0 branch (outdated)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/2.x/index.html">v2.0.0 branch (outdated)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/1.x/index.html">v1.0.0 branch (outdated)</a>
</li>
<li>
<a href="https://www.evennia.com/docs/0.x/index.html">v0.9.5 branch (outdated)</a>
</li>
</ul>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="Related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="evennia.commands.default.system.html" title="evennia.commands.default.system"
>next</a> |</li>
<li class="right" >
<a href="evennia.commands.default.muxcommand.html" title="evennia.commands.default.muxcommand"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">Evennia</a> &#187;</li>
<li class="nav-item nav-item-1"><a href="../Evennia-API.html" >API Summary</a> &#187;</li>
<li class="nav-item nav-item-2"><a href="evennia-api.html" >evennia</a> &#187;</li>
<li class="nav-item nav-item-3"><a href="evennia.html" >evennia</a> &#187;</li>
<li class="nav-item nav-item-4"><a href="evennia.commands.html" >evennia.commands</a> &#187;</li>
<li class="nav-item nav-item-5"><a href="evennia.commands.default.html" >evennia.commands.default</a> &#187;</li>
<li class="nav-item nav-item-this"><a href="">evennia.commands.default.syscommands</a></li>
</ul>
</div>
<div class="footer" role="contentinfo">
&#169; Copyright 2024, The Evennia developer community.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.3.
</div>
</body>
</html>