vantaMOO/typeclasses
Alexander Yakovlev 991814c43f Generic version, with tags
Applicable everywhere
2023-01-30 06:47:51 +06:00
..
single Generic version, with tags 2023-01-30 06:47:51 +06:00
README.md
__init__.py
accounts.py
channels.py
characters.py refactor character code structure 2023-01-17 17:51:04 -05:00
exits.py
npcs.py
oatmeal.py Generic version, with tags 2023-01-30 06:47:51 +06:00
objects.py Move RPSystem 2023-01-09 10:03:29 +07:00
rooms.py Move RPSystem 2023-01-09 10:03:29 +07:00
scripts.py Add test script 2023-01-08 10:39:20 -05:00

README.md

typeclasses/

This directory holds the modules for overloading all the typeclasses representing the game entities and many systems of the game. Other server functionality not covered here is usually modified by the modules in server/conf/.

Each module holds empty classes that just imports Evennia's defaults. Any modifications done to these classes will overload the defaults.

You can change the structure of this directory (even rename the directory itself) as you please, but if you do you must add the appropriate new paths to your settings.py file so Evennia knows where to look. Also remember that for Python to find your modules, it requires you to add an empty __init__.py file in any new sub directories you create.