Moss
Published
PROTON_NO_ESYNC=1 PROTON_NO_FSYNC=1 PROTON_LOG=1 %command%
As of update 2024-06-21 (Heart of the Swamp DLC) the game crashes everytime I teleport to a different location.
Game worked fine before HotS DLC
Install script fails to install Microsoft Edge Webview2 Runtime with error code 0xc0000005
Install script fails to install Microsoft Edge Webview2 Runtime with error code 0xc0000005. The Darktide launch menu opens but says "Microsoft Gaming Services not installed! Follow this link and install it."
Crashed 40 minutes into Chaos Wastes run
- Must host game or EAC will kick you.
- Game started fine for a few days, but now gets stuck in "Preparing to launch..." dialogue window. Reinstalling fixes but 100 GB takes time.
- Workshop mods are ignored
Must host the game or EAC will kick you
Steam will be stuck in "Launching Vermintide 2..." dialogue forever. Removing compdata folder fixes this but removes all user settings.
You have to host. Otherwise fine.
I made a shell script for resetting compdata folder while keeping user settings. Change the variable STEAM_LIBRARY_FOLDER
to where your steam library is, save the script to a file, make it runnable with chmod +x filename
and then run.
#!/bin/bash
STEAM_LIBRARY_FOLDER=/mnt/nvme1n1p1/SteamLibrary/
mv ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/pfx/drive_c/users/steamuser/AppData/Roaming/Fatshark/Vermintide\ 2/user_settings.config /tmp/user_settings.config
mv ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/pfx/drive_c/users/steamuser/AppData/Roaming/Fatshark/Vermintide\ 2/save_data.sav /tmp/save_data.sav
rm -r ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/
mkdir --parents ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/pfx/drive_c/users/steamuser/AppData/Roaming/Fatshark/Vermintide\ 2/
mv /tmp/user_settings.config ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/pfx/drive_c/users/steamuser/AppData/Roaming/Fatshark/Vermintide\ 2/user_settings.config
mv /tmp/save_data.sav ${STEAM_LIBRARY_FOLDER}/steamapps/compatdata/552500/pfx/drive_c/users/steamuser/AppData/Roaming/Fatshark/Vermintide\ 2/save_data.sav