1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-07-31 08:46:07 +00:00
psyced/place/spawndemo.c
psyc://psyced.org/~lynX 2bba51c662 spawn demo from wiki
2011-07-23 17:28:30 +02:00

24 lines
415 B
C

// spawn demonstration place as described in
// http://about.psyc.eu/Spawn
#include <net.h>
inherit NET_PATH "spawn";
launch();
#define NAME "SpawnDemo"
#define CRESET launch();
#include <place.gen>
incoming(response) {
castmsg(ME, "_notice_application_listener", response, ([]));
}
launch() {
#if 0 // make this '1' if you have a listener.sh installed in run
spawn("listener.sh", 0, #'incoming);
#endif
}