Alright, I came up with a hacky fix, but it works for me. I really only need two concurrent saves: one for me and one for my wife. By default, Witcher stores your save games in a folder in My Documents. So I went into C:/.../Documents/The Witcher 3 and made two subdirectories: one for me, and one for my wife. Then I made two windows batch files that are going to live on my desktop beside the shortcut to the game. One deloads my save files and loads up my wife's, and the other deloads hers and fires up mine. Here's the outline of each:
/////////////////////////////////////
@ECHO OFF
IF EXIST "C:\...\The Witcher 3\ [subdirectory 1 name] \gamesaves" (
move /-y "C:\...\The Witcher 3\gamesaves" "C:\...\The Witcher 3\ [subdirectory 2 name]"
move /-y "C:\...\The Witcher 3 [subdirectory 1 name] \gamesaves" "C:\...\The Witcher 3"
echo Loaded [your name here]'s files!
) ELSE (
echo [your name here]'s files already loaded!
)
pause
///////////////////////////////////
If you want to use this, copy the block between the slashes into a text document and save it as a .bat file. Then do that again, but swap [subdirectory 1 name] and [subdirectory 2 name]. Just double click on the bat file with the [subdirectory 1] you want to load and away you go. Getting this to work with more than two saves would be more complicated, and I'd rather play the game now than learn about batch scripting :P
EDIT: And apparently I can't mark my own response as a solution, so y'all feel free to keep pitching ideas :P
Post edited May 22, 2015 by sven_89