The sailing script now stores particular aliases to manipulate the exits to simulate sailing. Created George, the tinkering dwarf and his project that he needs help completing. Created an adventuring Hobbit who sails the sea. Created a "summarizing script" to limit the amount of chat history each Chatbot needs in order to carry on a conversation. Created a stateful object that changes its appearance based on "who" is looking. This allows a George's project to be seen as a complete bird to those who have given George some feathers. |
||
|---|---|---|
| .. | ||
| __init__.py | ||
| command.py | ||
| consumables.py | ||
| default_cmdsets.py | ||
| everyone.py | ||
| feedables.py | ||
| hint.py | ||
| misc.py | ||
| pets.py | ||
| README.md | ||
| say.py | ||
| scoring.py | ||
| sittables.py | ||
| wizards.py | ||
commands/
This folder holds modules for implementing one's own commands and command sets. All the modules' classes are essentially empty and just imports the default implementations from Evennia; so adding anything to them will start overloading the defaults.
You can change the organisation of this directory as you see fit, just
remember that if you change any of the default command set classes'
locations, you need to add the appropriate paths to
server/conf/settings.py so that Evennia knows where to find them.
Also remember that if you create new sub directories you must put
(optionally empty) __init__.py files in there so that Python can
find your modules.