Tell me more ×
Arqade is a question and answer site for passionate videogamers on all platforms. It's 100% free, no registration required.

I have installed Minecraft on several different computers, and I want to synchronize the list of servers with all of my computers. Is there any way to do this (e. g., by linking the list of servers to my Minecraft account)?

share|improve this question

1 Answer

up vote 2 down vote accepted

If you set up a Dropbox account, any files stored there will be synced between computers that have your account linked.

What you then can do to sync the file is use a symbolic link between the minecraft file and your dropbox folder.

For example, I synced my entire minecraft directory like so:

  • I moved the .minecraft folder into my dropbox's Private folder
  • Opened a Command Prompt window
  • Navigated to where the .minecraft folder was using the cd command (For example, `cd "C:\Users\Robotnik\AppData\Roaming\"
  • Create the symbolic link using the mklink command (mklink /D ".minecraft" "C:\Users\Robotnik\Dropbox\Private\My Games\.minecraft")
    • /D tells it to make a Directory symbolic link - if you only want to move one file leave this off- it will create a file link instead.

If you navigate to the link you just created using Explorer, it looks like a shortcut (it has the little arrow)

I do this with all my save games that don't automatically sync with the cloud.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.