We have Minecraft modded. We used the trick to change the %appdata% location so all modded files would be keep in a clean location. The new launch appears to download the files C:/Users\username\AppData\Roaming\.minecraft\ which we dont want.
We want the game to save everything in one location so we can store them on USB sticks.
We used a batch file with the following
@set APPDATA=%CD%\data
@.\Minecraft.exe
That worked great up till now. The new launcher saves its files there. But still checks the for the game in C:/Users\username\AppData\Roaming\.minecraft\ even when you create a new profile inside the launcher to user a different path.
Anyone know how to force this new launch to user a different location to store the files?
Hi all,
We have Minecraft modded. We used the trick to change the %appdata% location so all modded files would be keep in a clean location. The new launch appears to download the files C:/Users\username\AppData\Roaming\.minecraft\ which we dont want.
We want the game to save everything in one location so we can store them on USB sticks.
We used a batch file with the following
@set APPDATA=%CD%\data
@.\Minecraft.exe
That worked great up till now. The new launcher saves its files there. But still checks the for the game in C:/Users\username\AppData\Roaming\.minecraft\ even when you create a new profile inside the launcher to user a different path.
Anyone know how to force this new launch to user a different location to store the files?
Hi All,
I seem to have found a fix.
I have updated my batch file to include a workDir option. Below is the example in case anyone else needs it.
@set APPDATA=%CD%\data
@.\Minecraft.exe --workDir %APPData%\.minecraft