Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
EDIT: I've included a table of Archive-card-to-Room mappings in my second post in this thread (further below) which makes the initial quick suggestion in this comment unneeded; though there may be some minor context in this one that could help.
Two options where maybe 1 is simpler if you have 55 cards but also still have not collected all other supplemental Wayfarer cards (ie. the Terimnal Map still being messy; I have to double check if Archive vs Wayfarer cards display as a different symbol): EDIT: Correction - one option, memory is rusty and I'm re-remembering the map may not have much specific to -archive- cards.
compare them to this list to
It looks like we may need a guide like the one that list Corrupted puzzles Screenshots, but without their solution details like Corrupted puzzles hunting spoilers but no solutions to the puzzles; link: "Corruptions and Other Objects (no solutions, only text and images)". I'll see if I can get a quick list of these from that first guide but likely without photos, just room number and person+week, which can then be used with the first part of the first guide I noted above (which is free of spoilers and just talks about what room is what on the maps). Maybe later can turn that into a simple guide or note here with spoiler tags for others later.
Hope that may help any others that run into this type of issue. May create a guide later (or anyone is welcome to) based on this data. (I believe I can systematically 'drop' cards from my inventory by tweaking my save file, as can be done with unlocking anchors if I need to go check them all without replaying from the very beginning. I hesitate to do that though.)
The below Archive Card to Room mapping is pulled from the aforementioned guide that has the major puzzle spoilers.
NOTE: Note that checking the 'System Report' in game at a Terminal can show any remaining 'Red square' for incomplete anchors (which may unlock an Archive/Wayfarer card box); however, uncollected items hidden in the solved Anchor "line-boxes" I don't believe are shown on the map.
Otherwise, beyond the 'System Report' map, the below table may help.
(*) Note that "Floor 3 Rooms 4 and 5" is "Room 5" (in archive card context) and "Floor 3 Room 11 and 12" are from their three Anchors.
(1) Note that the Floor and Room are based on the VERY SPOILER filled guide in the url after 'curl' command below and "Floor #" Image Links above in "Table of Card to Room mapping" section.
(2) Note that the "Type" of 'anchor-line' is one you must unlock from an anchor, while 'environment' is a card found laying around in the room.
Oh right, also I replaced "Juniper - Week 11" (used in guide) with "Juniper - Week 10" here, which is included in the command above.. at the moment I'm unsure if the game actually a skipped week or a typo in the guide itself. I'll verify later and suggest the original guide be updated if it was juts a typo. Otherwise noting here in case that doesn't need to be done. EDIT2: Per my past quote in this thread "Nothing for Week 11" assuming I was correct at that time.
$ curl -qs 'https://steamcommunity.com/sharedfiles/filedetails/?id=2078187274' | dos2unix | tr -d '\n' | sed -e 's/[^ ]\+\s\+-\s\+\+Week\s*[0-9]\+/&\n/g' -e 's#\("subSectionTitle">\)\t\+\([^\t]\+\)\t\+</div>#\1\2\n#g'| sed -ne 's#.*"subSectionTitle">#==#p' -e 's#.*for \([^ ]\+\s\+-\s\+Week\s*[0-9]\+\)$#\1#p' | grep Week -B1 --no-group-separator | awk '{ if($1~/^==/){floor=$0;next} else {print $0 "|" floor }}' | sed 's/\s\+-\s\+Week\s\+\||==/|/g' | sed 's/^Juniper|11/Juniper|10/' | sort -t'|' -k1,1 -k2,2n | awk 'BEGIN {FS="|";print "\x5btable\x5d\n\x5btr\x5d\x5bth\x5dMember\x5b/th\x5d\x5bth\x5dWeek #\x5b/th\x5d\x5bth\x5dLocation(*)\x5b/th\x5d\x5b/tr\x5d"} { printf("\x5btr\x5d\x5btd\x5d%s\x5b/td\x5d\x5btd\x5d%s\x5b/td\x5d\x5btd\x5d%s\x5b/td\x5d\x5b/tr\x5d\n",$1,$2,$3);} END {print "\x5b/table\x5d"}'
EDIT: I figured I'd update the table to include if it's an anchor-line Prize or free in the environment.. updated command hacked-up more, below:
$ curl -qs 'https://steamcommunity.com/sharedfiles/filedetails/?id=2078187274' | dos2unix | tr -d '\n' | sed -e 's/[^ ]\+\s\+-\s\+\+Week\s*[0-9]\+/&\n/g' -e 's#\("subSectionTitle">\)\t\+\([^\t]\+\)\t\+</div>#\1\2\n#g'| sed -ne 's#.*"subSectionTitle">#==#p' -e 's#.*\(\(Prize: a\|A\)rchive card for\) \([^ ]\+\s\+-\s\+Week\s*[0-9]\+\)$#\1 \3#p' | grep Week -B1 --no-group-separator | awk '{ if($1~/^==/){floor=$0;next} else {print $0 "|" floor }}' | sed 's/\s\+-\s\+Week\s\+\||==/|/g' | sed -e 's/^Prize:.* for \(.*\)/\1|anchor-line/' -e 's/Archive card for \(.*\)/\1|environment/' | sed 's/^Juniper|11/Juniper|10/' | sort -t'|' -k1,1 -k2,2n | awk 'BEGIN {FS="|";print "\x5btable\x5d\n\x5btr\x5d\x5bth\x5dMember\x5b/th\x5d\x5bth\x5dWeek #\x5b/th\x5d\x5bth\x5dLocation(1)\x5b/th\x5d\x5bth\x5dType(2)\x5b/th\x5d\x5b/tr\x5d"} { printf("\x5btr\x5d\x5btd\x5d%s\x5b/td\x5d\x5btd\x5d%s\x5b/td\x5d\x5btd\x5d%s\x5b/td\x5d\x5btd\x5d%s\x5b/td\x5d\x5b/tr\x5d\n",$1,$2,$3,$4);} END {print "\x5b/table\x5d"}'
If any display or parsing oddness happens then quoting the comment in a new one temporarily might help for copy paste convenience. (Also I did not bother to inject links to Floors images per row as undoing that without automation later could be a pain for some; and I did not bother further complicating what I'd made to grab the "bb_h1">Room" sub-subSection headers for the entries that have multiple rooms referenced in it's section title.)