mirror of
https://github.com/evennia/evennia.git
synced 2026-04-06 16:44:08 +02:00
Updated HTML docs
This commit is contained in:
parent
56984e0545
commit
4e45c7fb2f
1272 changed files with 6782 additions and 5842 deletions
|
|
@ -54,10 +54,10 @@ Domain) is a multiplayer real-time virtual world described primarily in text. MU
|
|||
of role-playing games, hack and slash, player versus player, interactive fiction and online chat.
|
||||
Players can read or view descriptions of rooms, objects, other players, non-player characters, and
|
||||
actions performed in the virtual world. Players typically interact with each other and the world by
|
||||
typing commands that resemble a natural language.</em> - <a class="reference external" href="http://en.wikipedia.org/wiki/MUD">Wikipedia</a></p>
|
||||
typing commands that resemble a natural language.</em> - <a class="reference external" href="https://en.wikipedia.org/wiki/MUD">Wikipedia</a></p>
|
||||
</div></blockquote>
|
||||
<p>If you are reading this, it’s quite likely you are dreaming of creating and running a text-based
|
||||
massively-multiplayer game (<a class="reference external" href="http://tinyurl.com/c5sc4bm">MUD/MUX/MUSH</a> etc) of your very own. You
|
||||
massively-multiplayer game (<a class="reference external" href="https://tinyurl.com/c5sc4bm">MUD/MUX/MUSH</a> etc) of your very own. You
|
||||
might just be starting to think about it, or you might have lugged around that <em>perfect</em> game in
|
||||
your mind for years … you know <em>just</em> how good it would be, if you could only make it come to
|
||||
reality. We know how you feel. That is, after all, why Evennia came to be.</p>
|
||||
|
|
@ -120,17 +120,17 @@ page</a> for some reading suggestions. To efficiently code your dream game in
|
|||
Evennia you don’t need to be a Python guru, but you do need to be able to read example code
|
||||
containing at least these basic Python features:</p>
|
||||
<ul class="simple">
|
||||
<li><p>Importing and using python <a class="reference external" href="http://docs.python.org/3.7/tutorial/modules.html">modules</a></p></li>
|
||||
<li><p>Using <a class="reference external" href="http://www.tutorialspoint.com/python/python_variable_types.htm">variables</a>, <a class="reference external" href="http://docs.python.org/tutorial/controlflow.html#if-statements">conditional
|
||||
<li><p>Importing and using python <a class="reference external" href="https://docs.python.org/3.7/tutorial/modules.html">modules</a></p></li>
|
||||
<li><p>Using <a class="reference external" href="https://www.tutorialspoint.com/python/python_variable_types.htm">variables</a>, <a class="reference external" href="https://docs.python.org/tutorial/controlflow.html#if-statements">conditional
|
||||
statements</a>,
|
||||
<a class="reference external" href="http://docs.python.org/tutorial/controlflow.html#for-statements">loops</a> and
|
||||
<a class="reference external" href="http://docs.python.org/tutorial/controlflow.html#defining-functions">functions</a></p></li>
|
||||
<li><p>Using <a class="reference external" href="http://docs.python.org/tutorial/datastructures.html">lists, dictionaries and list
|
||||
<a class="reference external" href="https://docs.python.org/tutorial/controlflow.html#for-statements">loops</a> and
|
||||
<a class="reference external" href="https://docs.python.org/tutorial/controlflow.html#defining-functions">functions</a></p></li>
|
||||
<li><p>Using <a class="reference external" href="https://docs.python.org/tutorial/datastructures.html">lists, dictionaries and list
|
||||
comprehensions</a></p></li>
|
||||
<li><p>Doing <a class="reference external" href="http://docs.python.org/tutorial/introduction.html#strings">string handling and formatting</a></p></li>
|
||||
<li><p>Have a basic understanding of <a class="reference external" href="http://www.tutorialspoint.com/python/python_classes_objects.htm">object-oriented
|
||||
<li><p>Doing <a class="reference external" href="https://docs.python.org/tutorial/introduction.html#strings">string handling and formatting</a></p></li>
|
||||
<li><p>Have a basic understanding of <a class="reference external" href="https://www.tutorialspoint.com/python/python_classes_objects.htm">object-oriented
|
||||
programming</a>, using
|
||||
<a class="reference external" href="http://docs.python.org/tutorial/classes.html">Classes</a>, their methods and properties</p></li>
|
||||
<a class="reference external" href="https://docs.python.org/tutorial/classes.html">Classes</a>, their methods and properties</p></li>
|
||||
</ul>
|
||||
<p>Obviously, the more things you feel comfortable with, the easier time you’ll have to find your way.
|
||||
With just basic knowledge you should be able to define your own <a class="reference internal" href="Components/Commands.html"><span class="doc">Commands</span></a>, create custom
|
||||
|
|
@ -158,10 +158,10 @@ structure.</p>
|
|||
<ol class="simple">
|
||||
<li><p>Get engaged in the community. Make an introductory post to our <a class="reference external" href="https://groups.google.com/forum/#%21forum/evennia">mailing
|
||||
list/forum</a> and get to know people. It’s also
|
||||
highly recommended you hop onto our <a class="reference external" href="http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb">Developer
|
||||
highly recommended you hop onto our <a class="reference external" href="https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb">Developer
|
||||
chat</a>
|
||||
on IRC. This allows you to chat directly with other developers new and old as well as with the devs
|
||||
of Evennia itself. This chat is logged (you can find links on http://www.evennia.com) and can also
|
||||
of Evennia itself. This chat is logged (you can find links on https://www.evennia.com) and can also
|
||||
be searched from the same place for discussion topics you are interested in.</p></li>
|
||||
<li><p>Read the <a class="reference internal" href="Howto/Starting/Part2/Game-Planning.html"><span class="doc">Game Planning</span></a> wiki page. It gives some ideas for your work flow and the
|
||||
state of mind you should aim for - including cutting down the scope of your game for its first
|
||||
|
|
@ -226,11 +226,11 @@ your own game, you will end up with a small (very small) game that you can build
|
|||
<li><a href="https://www.evennia.com">Home page</a> </li>
|
||||
<li><a href="https://github.com/evennia/evennia">Evennia Github</a> </li>
|
||||
<li><a href="http://games.evennia.com">Game Index</a> </li>
|
||||
<li><a href="http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb">IRC</a> -
|
||||
<a href="https://discord.gg/NecFePw">Discord</a> -
|
||||
<a href="https://groups.google.com/forum/#%21forum/evennia">Forums</a>
|
||||
<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/">Dev blog</a>
|
||||
</li>
|
||||
<li><a href="http://evennia.blogspot.com/">Evennia Dev blog</a> </li>
|
||||
</ul>
|
||||
<h3>Versions</h3>
|
||||
<ul>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue