Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions games/bare.arch
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,14 @@ methods
# is in the room. Note the use of the write statement: just one string
# after the other is printed with no regard to margins. This is OK because
# it will wrap the words automatically.
'FIRSTDESC' : >>Welcome to the demonstration adventure!
>>What you are seeing here is the 'FIRSTDESC' method.
>>Although in this case there is only some writing, there is no problem
>>with putting other executable statements here as well.
'FIRSTDESC' :
>>Welcome to the demonstration adventure!
>>What you are seeing here is the 'FIRSTDESC' method.
>>Although in this case there is only some writing, there is no problem
>>with putting other executable statements here as well.
>>The '>>' operators chain to create a single statement, so be careful;
>>if you want other executable statements, put braces around this
>>sequence.

# The LONGDESC message is sent when the player first sees the room and also
# whenever they type "look" by itself at the prompt.
Expand Down
Loading
Loading