Is it possible to setup Minecraft so that the maps are loaded and saved from a different folder (like my Dropbox folder)?
Where are they stored by default?
|
Is it possible to setup Minecraft so that the maps are loaded and saved from a different folder (like my Dropbox folder)? Where are they stored by default? |
||||
|
|
|
You would need soft links to do that. Create a soft link from your minecraft savegame folder to inside the Dropbox folder. However, it will be quite suboptimal. Minecraft stores save games in many, many small files and Dropbox does not support folder-wide rollbacks. What I would use instead is a source control versioning system. First time setup
Backing up
This, except maybe for the commit message, should be easily automated with batch files. Here's a very simple bash script for Ubuntu:
Going "back in time"
Dropbox backupWhile we are scripting, we might as well have a single file copy of your game files to be put on Dropbox.
This makes for a much more Dropbox-friendly solution -- just be aware you are backing up the repository, not just the game files. If you want just the latter:
Remote hostingIf you want to keep game files up to date between different machines, it is trivial to do so - even without Dropbox. You can have a remote copy of your repository for free at these hosting solutions. Choose one that will not complain about your not using their service for a non-code project... Intuxication for example. Be very careful, however -- you want to avoid conflicts. Merging will not work, so you will need to always push after you play and always pull before you play. This is trivial to do if you are using a script:
Specific setup details vary based on your hosting solution. |
|||||||||||||
|
|
Here's how I did it on Windows:
More info on NTFS Junctions, Dropbox (2GB, cross-platform, referral link), Live Mesh (5GB, Windows/Mac only). Update: Here's a handy batch file to backup your save games in a zip file before launching minecraft:
|
||||
|
|
|
On the Mac, your worlds are stored in ~/Library/Application Support/minecraft/saves/. You can create an symbolic link at that location to wherever you'd like, Dropbox or otherwise, and Minecraft will follow that symlink to a different location. |
|||||||||||||
|
|
Have you tried Sugarsync? It will allow you to sync specific folders on your computer as opposed to having to link everything through the dropbox folder. |
|||||||
|