├── README.md ├── doc ├── SCRIPTING.MD ├── psyrcd.png └── psyrcd_banner.png ├── pluginbase.py ├── plugins ├── foo.py └── httpd.py ├── psyrcd ├── psyrcd.conf ├── psyrcd.py ├── psyrcd.service ├── requirements.txt ├── scripts ├── ChanServ.py ├── NickServ.py ├── capabilities.py ├── disect.py ├── news.py ├── proctitle.py ├── replace.py └── sortition.py └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/README.md -------------------------------------------------------------------------------- /doc/SCRIPTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/doc/SCRIPTING.MD -------------------------------------------------------------------------------- /doc/psyrcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/doc/psyrcd.png -------------------------------------------------------------------------------- /doc/psyrcd_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/doc/psyrcd_banner.png -------------------------------------------------------------------------------- /pluginbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/pluginbase.py -------------------------------------------------------------------------------- /plugins/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/plugins/foo.py -------------------------------------------------------------------------------- /plugins/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/plugins/httpd.py -------------------------------------------------------------------------------- /psyrcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/psyrcd -------------------------------------------------------------------------------- /psyrcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/psyrcd.conf -------------------------------------------------------------------------------- /psyrcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/psyrcd.py -------------------------------------------------------------------------------- /psyrcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/psyrcd.service -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyhcl 2 | uvloop 3 | -------------------------------------------------------------------------------- /scripts/ChanServ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/ChanServ.py -------------------------------------------------------------------------------- /scripts/NickServ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/NickServ.py -------------------------------------------------------------------------------- /scripts/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/capabilities.py -------------------------------------------------------------------------------- /scripts/disect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/disect.py -------------------------------------------------------------------------------- /scripts/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/news.py -------------------------------------------------------------------------------- /scripts/proctitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/proctitle.py -------------------------------------------------------------------------------- /scripts/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/replace.py -------------------------------------------------------------------------------- /scripts/sortition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/scripts/sortition.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeB42/psyrcd/HEAD/setup.py --------------------------------------------------------------------------------