Inform - Resources - Examples

Back to List

Inventory
Complete

Backward
Forward

Plain
Coloured
Gaudy

This code
in plain text

Browsing Advent.inf

7. Long Hall to the west of the Hall of Mists (lines 865-902)

0865  Room    At_East_End_Of_Long_Hall "At East End of Long Hall"
0866    with  name 'east' 'e//' 'end' 'of' 'long' 'hall',
0867          description
0868              "You are at the east end of a very long hall apparently without side chambers.
0869               To the east a low wide crawl slants up.
0870               To the north a round two foot hole slants down.",
0871          e_to At_West_End_Of_Hall_Of_Mists,
0872          u_to At_West_End_Of_Hall_Of_Mists,
0873          w_to At_West_End_Of_Long_Hall,
0874          n_to Crossover,
0875          d_to Crossover;
0876   
0877  ! ------------------------------------------------------------------------------
0878   
0879  Room    At_West_End_Of_Long_Hall "At West End of Long Hall"
0880    with  name 'west' 'w//' 'end' 'of' 'long' 'hall',
0881          description
0882              "You are at the west end of a very long featureless hall.
0883               The hall joins up with a narrow north/south passage.",
0884          e_to At_East_End_Of_Long_Hall,
0885          s_to Different_Maze_1,
0886          n_to Crossover;
0887   
0888  ! ------------------------------------------------------------------------------
0889   
0890  Room    Crossover "N/S and E/W Crossover"
0891    with  name 'n/s' 'and' 'e/w' 'crossover',
0892          description
0893              "You are at a crossover of a high N/S passage and a low E/W one.",
0894          w_to At_East_End_Of_Long_Hall,
0895          n_to Dead_End_7,
0896          e_to In_West_Side_Chamber,
0897          s_to At_West_End_Of_Long_Hall;
0898   
0899  Scenic  -> "crossover"
0900    with  name 'crossover' 'over' 'cross',
0901          description "You know as much as I do at this point.";
0902   


Last updated 23 June 2004. This site is no longer supported; information may be out of date.
Maintained as a historical archive by the Interactive Fiction Technology Foundation. Copyright 1993-2018 IFTF, CC-BY-SA unless otherwise noted.
This page was originally managed by Graham Nelson (graham@gnelson.demon.co.uk) assisted by C Knight.