inherit "/std/room"; object board; void setup() { set_short("The New Moon job centre"); set_light( 100 ); set_long( "This is the New Moon job centre. Just to be " +"different from job centres elsewhere, here, the " +"creators are pinned up on boards, and the jobs " +"file past them in a slow, dismal, and very " +"long queue.\n"); add_item( ({ "people", "creator" }), "There are not half as many pinned " +"up on the boards are there need to be if " +"all the jobs are to be done...\n"); add_exit("common", "/w/common", "corridor"); } /* setup() */ void reset() { if( !board ) { board = clone_object( "/obj/misc/board" ); board->move( this_object() ); board->set_datafile( "jobs" ); } } /* reset() */