/
Sapphire/bin/
Sapphire/db/
Sapphire/db/OLC_rooms/
Sapphire/db/abi/
Sapphire/db/em_src/
Sapphire/db/helps/
Sapphire/db/helps/emman/ifunc/
Sapphire/db/npcs/Tatt/
Sapphire/db/objects/Tatt/
Sapphire/db/q_data/
Sapphire/db/rooms/Tatt/
Sapphire/doc/
Sapphire/doc/em/
Sapphire/etc/
Sapphire/src/abic/
Sapphire/src/areacon/
Sapphire/src/client/
Sapphire/src/embc/
Sapphire/src/emi/
Sapphire/src/emi/test/
Sapphire/src/include/
Sapphire/src/sapphire/em/
Sapphire/src/tcon/
#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;