Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
You are an idiot. Hes talking about modding single player you noob.
both accounts share installation location.
Its more about Steam and my computer itself.
Say you copy your installation to somewhere else, then delete your original folder. Now, since you had tons of mods, you could reinstall GTA V through Steam. Then, you move that folder somewhere else (don't copy it, cut/paste it).
Now you've got two installation folders of GTA V, one modded and another not modded. They should be both somewhere else of your steamapps folder. Now, you could make a quick batch script that creates a junction in your Steam installation to one of the installation folder you copied/moved. Basically, a junction creates a "shortcut links" toward another folder so that Steam think the game is installed but it's actually somewhere else than the steamapps folder.
You can look at the documentation of mklink, the tool used for creating junctions :
https://technet.microsoft.com/en-us/library/cc753194(v=ws.11).aspx
Basically, you would use it like that :
mklink /j "C:\Program Files (x86)\Steam\steamapps\common\Grand Theft Auto V" "C:\Games\Modded GTAV"
Where "C:\Program Files (x86)\Steam\steamapps\common\Grand Theft Auto V" is your Steam installation folder and the location of the game recognized by Steam;
And where "C:\Games\Modded GTAV" is the copied folder of your installation with mods.
Then, you can do the same for your clean GTA V installation, like this :
mklink /j "C:\Program Files (x86)\Steam\steamapps\common\Grand Theft Auto V" "C:\Games\Clean GTAV"
Also, don't forget to delete the junction before you create another one. If you don't, it just displays you an error when using the command.