- 21 rooms across 4 wings (Dormitories, Commons, Workshops, Gardens) - Full exit graph connecting all rooms bidirectionally - Room descriptions for all 16 inner rooms - 5 character accounts (wizard, Allegro, Allegro-Primus, Timmy, Ezra) - Public communication channel - Build script: world/build_academy.ev - Wing modules: world/dormitory_entrance.py, commons_wing.py, workshop_wing.py, gardens_wing.py Built by Allegro, descriptions and exit fixes by Timmy.
25 lines
709 B
Python
25 lines
709 B
Python
"""
|
|
Start plugin services
|
|
|
|
This plugin module can define user-created services for the Portal to
|
|
start.
|
|
|
|
This module must handle all imports and setups required to start
|
|
twisted services (see examples in evennia.server.portal.portal). It
|
|
must also contain a function start_plugin_services(application).
|
|
Evennia will call this function with the main Portal application (so
|
|
your services can be added to it). The function should not return
|
|
anything. Plugin services are started last in the Portal startup
|
|
process.
|
|
|
|
"""
|
|
|
|
|
|
def start_plugin_services(portal):
|
|
"""
|
|
This hook is called by Evennia, last in the Portal startup process.
|
|
|
|
portal - a reference to the main portal application.
|
|
"""
|
|
pass
|