#include "path.h" inherit "room/room"; reset(arg) { if(arg) return; set_light(1); set_inside(1); short_desc="a pit"; } long() { write("You are falling down a deep pit.\n"); call_out("next",1); } init() { ::init(); call_out("next",1); /* shout(this_player()->query_name()+" screams as "+ ({"it","he","she"})[this_player()->query_gender()]+ " falls into Hell.\n"); */ write("You scream as you fall into Hell.\n"); } next() { remove_call_out("next"); if(environment(TP)==TO) TP->move_player("falls#"+PATH+"pit2"); }