moss-n-puddles/commands
2025-05-27 18:23:42 -07:00
..
__init__.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
command.py Attempt to update feed commands 2025-04-07 22:44:56 -07:00
consumables.py The think command now goes to the public channel 2025-05-15 23:00:45 -07:00
default_cmdsets.py Move read command to character 2025-05-17 11:51:56 -07:00
everyone.py Automated puppets react on triggers 2025-05-25 22:06:52 -07:00
feedables.py Add 'pet' command for friendly pets. 2025-04-21 21:55:13 -07:00
lighting.py Change text randomization from {{...}} to <<..>> 2025-04-17 20:39:40 -07:00
misc.py Create a functioning, magical pipe 2025-05-18 00:39:09 -07:00
pets.py Persist knock and pet commands 2025-05-16 21:53:53 -07:00
README.md In the beginning was a tree... 2025-01-22 07:58:32 -08:00
sittables.py Better help messages. 2025-03-02 10:25:28 -08:00
wizards.py Triggers now execute commands when preceded with @ 2025-05-27 18:23:42 -07:00

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.