sweetpoison0011
1 year agoSeasoned Ace
Re: [PC] Game Randomly Crashing In Different Areas of The Game
The shaders cache you need to clean are generated by system, leave the one from game location intact.
Copy the following code and paste it in a .bat file (notepad is perfect for this job) on desktop (or any other location)
@echo off pushd %temp% if not exist %userprofile%\AppData\Local\cache\ (goto _step2) pushd %userprofile%\AppData\Local\cache\ for /d %%D in (*) do rd /s /q "%%D" del /f /q * popd :_step2 if not exist %userprofile%\AppData\Local\D3DSCache\ (goto:EOF) pushd %userprofile%\AppData\Local\D3DSCache\ for /d %%D in (*) do rd /s /q "%%D" del /f /q * popd
Restart the computer and execute the .bat file. Restart the game and you should notice the shaders recompilation process. That is all.