Skess01: In game installation folder there's "cinn_goodies" folder.
No sign of the DLCs, but I guess they may just be incorporated.
Using InnoExtract, I was able to see the list of contents of the version from a few days ago. I note there has been another update since then, but haven't grabbed that yet.
Listing "Crossroads Inn Anniversary Edition" - setup data version 5.6.2 (unicode)
- "__redist\ISI\scriptinterpreter.exe" (1.19 MiB)
- "Crossroads Inn.exe" [en-US] (111 MiB)
- "Galaxy64.dll" [en-US] (12.9 MiB)
- "lua53.dll" [en-US] (322 KiB)
- "Bin\Project.pak" [en-US] (12.4 GiB)
- "cinn_goodies\Concept Arts\Crossroads_Inn_ConceptArts.pdf" [en-US] (13.9 MiB)
- "cinn_goodies\Cookbook\Full_Cookbook_EN.pdf" [en-US] (15.8 MiB)
- "cinn_goodies\Cookbook\Full_Cookbook_PL.pdf" [en-US] (15.8 MiB)
- "cinn_goodies\Game Guide\Crossroads_Inn_Guide_DE.pdf" [en-US] (862 KiB)
- "cinn_goodies\Game Guide\Crossroads_Inn_Guide_EN.pdf" [en-US] (842 KiB)
- "cinn_goodies\Game Guide\Crossroads_Inn_Poradnik_PL.pdf" [en-US] (5.08 MiB)
- "cinn_goodies\Soundtrack\Aviary (no ambient).mp3" [en-US] (875 KiB)
- "cinn_goodies\Soundtrack\Aviary.mp3" [en-US] (909 KiB)
- "cinn_goodies\Soundtrack\Couriers Guild.mp3" [en-US] (914 KiB)
- "cinn_goodies\Soundtrack\Female Academy.mp3" [en-US] (1.01 MiB)
- "cinn_goodies\Soundtrack\Gildebones.mp3" [en-US] (1.16 MiB)
- "cinn_goodies\Soundtrack\King in the Inn.mp3" [en-US] (2.08 MiB)
- "cinn_goodies\Soundtrack\Sambria Theme.mp3" [en-US] (1004 KiB)
- "cinn_goodies\Soundtrack\The Masks.mp3" [en-US] (1.02 MiB)
- "cinn_goodies\Soundtrack\Town of Crossroads.mp3" [en-US] (1.74 MiB)
- "cinn_goodies\Soundtrack\Untermarch Theme.mp3" [en-US] (915 KiB)
- "cinn_goodies\Soundtrack\Way to the Throne.mp3" [en-US] (1.78 MiB)
- "cinn_goodies\Soundtrack\Yorevale Theme.mp3" [en-US] (1.08 MiB)
- "cinn_goodies\Soundtrack\Bards\Bongo.mp3" [en-US] (1.81 MiB)
- "cinn_goodies\Soundtrack\Bards\Hubu.mp3" [en-US] (1.98 MiB)
- "cinn_goodies\Soundtrack\Bards\Letima.mp3" [en-US] (1.88 MiB)
- "cinn_goodies\Soundtrack\Bards\Ludo.mp3" [en-US] (1.55 MiB)
- "cinn_goodies\Soundtrack\Bards\Nillesio.mp3" [en-US] (1.5 MiB)
- "cinn_goodies\Soundtrack\Bards\Winton.mp3" [en-US] (4.53 MiB)
- "cinn_goodies\Soundtrack\Four Seasons\Four Seasons - Autumn.mp3" [en-US] (5.63 MiB)
- "cinn_goodies\Soundtrack\Four Seasons\Four Seasons - Spring.mp3" [en-US] (5.1 MiB)
- "cinn_goodies\Soundtrack\Four Seasons\Four Seasons - Summer.mp3" [en-US] (4.48 MiB)
- "cinn_goodies\Soundtrack\Four Seasons\Four Seasons - Winter.mp3" [en-US] (4.53 MiB)
- "Scenarios\duke.scenario" [en-US] (518 KiB)
- "Scenarios\ellisa.scenario" [en-US] (529 KiB)
- "Scenarios\fantasy_map.scenario" [en-US] (352 KiB)
- "Scenarios\lady.scenario" [en-US] (543 KiB)
- "Scenarios\trovin.scenario" [en-US] (520 KiB)
- "Scenarios\valentines.scenario" [en-US] (929 KiB)
- "goggame-2037234491.hashdb" [en-US] (1.54 KiB)
- "goggame-2037234491.info" [en-US] (542 B)
- "goggame-2037234491.id" [en-US] (38 B)
- "tmp\gog_installer_background.jpg" [temp], "tmp\background.jpg" [temp] (405 KiB)
- "app\goggame-2037234491.ico" (158 KiB)
- "app\webcache.zip" (300 KiB)
- "commonappdata\GOG.com\supportInstaller\uninstall.dll" (691 KiB)
##### Plus a whole bunch of files in a TMP folder, mostly JPG and a slideshow setup #####
Done.
I also extracted to a folder using InnoExtract.
While a bunch of the goodies are found, not all as shown by
mqstout's screenshot, and some of the file sizes differ, most notably the soundtrack which is only 47.3 Mb extracted.
No sign of the
Tavern Tales or
Map or
Skin ... and there should be about 58 Mb more of soundtrack files.
The DLCs might be found in the Project.pak file which is a 12.3 Gb extraction.
EDIT If anyone else wants to extract using InnoExtract, a free program, here is the BAT file I used.
Inno.bat
@echo off
cd %CD%
goto EXTRACT
:EXTRACT
"%~dp0\innoextract.exe" --extract --gog --output-dir "G:\GAMES\Test" %1
goto END
:LIST
"%~dp0\innoextract.exe" --list --gog %1 >"%~dp0\List.txt"
Notepad.exe "%~dp0\List.txt"
goto END
:END
pause
cls
exit
Just save that into a text file named
Inno.bat, placed in the same directory (folder) as
innoextract.exe.
Modify the output directory path ("
G:\GAMES\Test") value to suit your desire.
Then just drag & drop the
setup_crossroads_inn_anniversary_edition_4.0.5d_(51195).exe file onto
Inno.bat.
If you wish you can just view the list, by changing the
goto EXTRACT line to
goto LIST