#include <mudlib.h> inherit ROOM; void reset(status arg) { if(arg) return; set_short("The middle"); set_long("You are standing halfway along road. To the north stands \n"+ "a cliff. To the south lies the city.\n"); set_exits(({ "players/admin/begin", "south", "players/admin/cliff2", "north", })); set_weather(1,4,0); set_smell("It smells of green grass and trees.\n"); set_listen("You hear nothing but the whisper of wind over grass and leaf.\n"); }