Fortuente
18Jul/11

Using Dropbox as Cloud Save Game Storage

Using a service like Dropbox as a convient way to synchronize your game files between two computers (such as a desktop and a laptop) is really pretty easy. Here is how to create a directory junction in Windows from your game's normal save game directory and a special directory created in your Dropbox folder. I suppose this will work for other file synchronization services such as Ubuntu One, SugarSync, or Wuala also.

In this example I am using the game Terraria. I am going to sync both my saved worlds and players data in my Dropbox folder instead of the normal folder set by Terraria. This will work for pretty much any game, though. I use this for my special single-player Minecraft map also (seed: gargamel), so I can have it wherever I have Dropbox.

1. Determine where your save game folder is.

In this case, Terraria saves its user data in the directory:

C:\Users\USERNAME\Documents\My Games\Terraria

 This is folder we will be working in for the most part. There are two directories in here, Worlds and Players. These are the two directories I want to relocate to my Dropbox folder. USERNAME should be replaced with your actual user name.

2. Recreate the directories in your Dropbox folder.

To do this, I just copied the "My Games\Terraria" folder to my Dropbox folder. Now I have the following folder:

C:\Users\USERNAME\Dropbox\Terraria

This contains all the saved data for Terraria I want to keep synchronized between my two computers. The location of your Dropbox folder may be different than mine, depending on where you installed it.

3. Link the folders.

Now I go back to the My Games directory and delete the Terraria folder. Horreur! I know, but remember you still have the copy in your Dropbox folder just in case. What we now want to do is load up Windows' handy-dandy command prompt (ie, cmd.exe), and using it we navigate our way to the My Games folder with the following command:

cd C:\Users\USERNAME\Documents\My Games

Remember, USERNAME should be replaced with your actual user name.

Now we create the directory junction to our Terraria folder in our Dropbox directory. In the Command Prompt, use the following command:

mklink /J Terraria C:\Users\USERNAME\Dropbox\Terraria

This will now make a "shortcut" to the Terraria folder in your Dropbox directory in such a way as to be indistinguishable from an actual normal folder to your system. You can play the game normally, and when you save it will use the "Dropbox\Terraria" folder as if it were the normal "My Games\Terraria" folder.

That is all there is to it. Repeat this process on your other computer, taking care not to overwrite your Dropbox-saved data with old information. Now, you will have access to the same saved game information regardless on which of your computers you choose to play it on.

Filed under: How To No Comments
3Mar/08

Portal Video Walkthroughs

Basic Levels

I found Portal to be the right blend of challenge and streamlined gameplay. Once you master the portal gun and if you are already familiar with the typical Half-Life puzzle style this game could be considered downright easy. Still, I got stuck twice during the game to the point where I had to consult a guide before I was able to proceed - I'm lame like that. If you are stuck on a level you can find the solution among these videos below made by Mmac2797.

19Jan/08

How to enable Mouse Look in WoW

Have you ever wondered how to enable a more traditional fps-style mouse-look mode in WoW? I know I have; the constant click-and-hold nature of WoW has played havoc with my wrist tendons and I also often find it clunky to use in pvp situations - especially when I've taken a week off to play Team Fortress 2 and have to readjust back to the WoW UI.

The term "mouse look" refers to the ability to move your character simply by moving your mouse. This is a feature found in many types if 3d games (an rpg example is Oblivion), and is a predominant feature of the fps genre. WoW's default mouse-look mode is activated when you press and hold down the right mouse button while moving it.

A really easy way to enable mouse-look mode is through the simple macro:


/run if IsMouselooking() then MouselookStop() else MouselookStart() end

Clicking this macro will cause your pointer to disappear and your mouse will behave as if the right mouse button is being held down. To disengage mouse look with this script, simply click your right mouse button and the pointer will return. Because this is a macro, you can also easily bind this to a spare mouse or keyboard key.

Now while this feature works great in general, World of Warcraft was not designed for it. If you attempt to keep this enabled all the time, you will quickly run into a few annoyances - the biggest one being that you are unable to target or click on npcs, mobs or other players.

The lack of targeting is not a problem at all for pve play and a minor inconvenience (depending on your skill level) in pvp. To target and engage mobs or pvp players simply use your TAB button and normal action keys; you can also rebind your auto-target (TAB) to another button if you don't like TAB. As far as your action keys are concerned, if you are a clicker you will probably just want to ween yourself from that habit.

There doesn't seem to be any option for using mouse-look mode in your day-to-day interactions with friendly npcs, vending machines or the mailbox. But we can chock that up to being a necessary limitation of the WoW UI.

Tagged as: 2 Comments