{% 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 can be expanded into a full-fledged home for your game.

{% if webclient_enabled %}

Play in the browser!

{% endif %} {% if telnet_enabled %}

Telnet: {{ server_hostname }}, port {% for port in telnet_ports %} {% if not forloop.first and forloop.last %} or {% elif forloop.counter != 1 %}, {% endif %} {{ port }} {% endfor %}

{% endif %} {% if telnet_ssl_enabled %}

Telnet (SSL): {{ server_hostname }}, port {% for port in telnet_ssl_ports %} {% if not forloop.first and forloop.last %} or {% elif forloop.counter != 1 %}, {% endif %} {{ port }} {% endfor %}

{% endif %} {% if ssh_enabled %}

SSH: {{ server_hostname }}, port {% for port in ssh_ports %} {% if not forloop.first and forloop.last %} or {% elif forloop.counter != 1 %}, {% endif %} {{ port }} {% endfor %}

{% endif %}

For more info, see the Evennia homepage or check out our extensive online documentation.

Don't hesitate asking questions to the Evennia community!
Drop a message in the Evennia forums or come say hi in the Discord support channel.

Evennia is Open source and can be found on GitHub. If you find bugs, please report them to the Issue tracker.


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 %}