#6
image       "nothing.gif";
title       "Tatt's Room";
desc
  "You are in a small, warm room.  Many old books are\n\r
stacked in every corner and on every flat surface. There\n\r
is a dim light that fills the room, although you fail\n\r
to see its source.\n\r" [format];
north_desc  "You see the void." [format];
sector      Inside;
north       7 standard;
* npcs        [7[][]600];
* npcs        [6[][]600];
* objects     [6[]600];
program
{
    trigger main enabled
      message ( suffix " appears in a puff of smoke." )
    {
        if ( is_guest( actor ) != 0 )
            end( );
        if ( actor.level > 1 )
            end( );
        disable( all );
        create_npc( 7, actor );
        enable( all );
    }
};
end;