{% extends "website/base.html" %} {% block titleblock %}Home{% endblock %} {% block header_ext %} {% endblock %} {% block content %}

Welcome to Evennia!


The Python MUD/MU* creation system.

You are looking at the start of your game's website, generated out of the box by Evennia. It has several example pages and can be expanded into a full-fledged home for your game.

{% if webclient_enabled %}

Play in the browser!

{% endif %}

For more info, take your time to peruse Evennia's extensive online manual.

If you have any questions, don't hesitate to join the Evennia community! Drop a message in the Evennia forums or come say hi in the support/chat channels (IRC or Discord).

If you find bugs, please report them to our Issue tracker on GitHub.


Accounts

There's currently {{num_accounts_connected}} connected out of a total of {{num_accounts_registered}} account{{num_accounts_registered|pluralize}} registered.

Of these, {{num_accounts_registered_recent}} were created this week, and {{num_accounts_connected_recent}} have connected within the last seven days.

Recently Connected

    {% for account in accounts_connected_recent %}
  • {{account.username}}—{{account.last_login|timesince}} ago
  • {% endfor %}

Database Stats

  • {{num_accounts_registered}} account{{num_accounts_registered|pluralize}} (+ {{num_characters}} character{{num_characters|pluralize}})
  • {{num_rooms}} room{{num_rooms|pluralize}} (+ {{num_exits}} exits)
  • {{num_others}} other objects

Evennia

Evennia is an open-source MUD/MU*-creation framework built in Python, using Twisted and Django.
Create the text-based multiplayer-game of your dreams - as simple or as complex as you like.

{% endblock %}