- 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.
20 lines
629 B
Python
20 lines
629 B
Python
"""
|
|
At_initial_setup module template
|
|
|
|
Custom at_initial_setup method. This allows you to hook special
|
|
modifications to the initial server startup process. Note that this
|
|
will only be run once - when the server starts up for the very first
|
|
time! It is called last in the startup process and can thus be used to
|
|
overload things that happened before it.
|
|
|
|
The module must contain a global function at_initial_setup(). This
|
|
will be called without arguments. Note that tracebacks in this module
|
|
will be QUIETLY ignored, so make sure to check it well to make sure it
|
|
does what you expect it to.
|
|
|
|
"""
|
|
|
|
|
|
def at_initial_setup():
|
|
pass
|