// johndoe @ gooeymud #include #include inherit ROOM ; inherit DOORS ; void create() { object *obs ; object ob ; ::create(); seteuid(getuid(this_object())); set("short", "The forgotten workshop"); set("long","You are in some sort of strange room. There are flasks of all sort scattered around the room. Some flasks are made of every color, others are totaly colorless. Every now and then, strange smells come out of small tubes which seem to come straight from the ground.\n"); set("light", 1); set("exits", ([ "up" :"/d/newbieville/trainer", "down" :"/u/j/johndoe/d/test_2/donation.c", "east" :"/d/newbieville/lounge/lounge.c", "south" :"/d/deadhorse/bbs", "west" :"/d/wiz/bbhall", ]) ) ; call_other ("/u/j/johndoe/d/workroom/board", "jdoe") ; reset(); }