Steam Cloud: Difference between revisions
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Steam | Steam Cloud enables you to synchronize configs and pak/pkz files to [https://help.steampowered.com/en/faqs/view/68D2-35AB-09A9-7678 Steam Cloud] to be used on another computer or as a cloud backup. | ||
== Enable/Disable Cloud Store == | == Enable/Disable Cloud Store == |
Revision as of 23:06, 4 October 2022
Steam Cloud enables you to synchronize configs and pak/pkz files to Steam Cloud to be used on another computer or as a cloud backup.
Enable/Disable Cloud Store
Steam Cloud is enabled by default, but you can disable it if you don’t want to use it. Steam Cloud is enabled if it’s enabled in BOTH your global steam settings AND for AQtion.
Toggle Steam Cloud for specifically for AQtion
Toggle Steam Cloud globally in Steam
How to start the game with Steam Cloud
For AQtion to load the Steam Cloud directory at start, Steam must be running and Steam Cloud must be enabled (see above); if you don’t start start the game from Steam, you can also launch aqtion.exe in the install directory. If you start q2pro.exe, the Steam integration won't be loaded and Steam Cloud will not work.
NOTE: When Steam Cloud is active, this folder is used as your primary game directory, meaning all new files created by q2pro will be stored there. Files such as demos, screenshots, condumps and config files will reside here.
Folder structure
|
Which files gets synced?
Not all files inside the Steam Cloud directory gets synchronized to the cloud, only files placed inside SteamCloud\<SteamID>\action\ with the following extensions gets synced to the cloud.
*.cfg files including sub-directories *.pak files only in root directory *.pkz files only in root directory *.menu files only in root directory
File size and file count limitations
- Files cannot be bigger than 100MB (*)
- The total cloud storage provided is 1GB
- Max amount of files are 1000 individual files (pak and pkz files counts as one each no matter how many files they contain)
(*) For this reason big map and texture packs should not reside in your Steam Cloud directory, place them in the original action directory (2) instead
Deleting files from cloud store
Unfortunately, deleting files from Steam Cloud is rather inconvenient. If you want to know why in detail see here, but if you just want to delete a file that is stuck or gets re-synchronized after you deleted it, do the following:
Deleting config-files
To delete a config file, start the game with cloud sync enabled, alt-tab out of the game and delete the files, tab back to the game and quit it. The files will now be deleted from cloud store.
Deleting .pak or .pkz files
To delete a pak or .pkz file, open powershell and run the following two commands
cd 'c:\path\to\your\AQtion\SteamCloud\<SteamID>\action\' clc the-file-you-want-to-delete.pkz
Then start, and quit your game. Now you can also delete the file from your directory.
If you are on mac or linux, use this command instead
cd /path/to/your/AQtion/SteamCloud/<SteamID>/action/ :> filename
Why is it so hard to delete .pak & .pkz files from cloud store?
Steam does not have a user interface or tool to manage the files that are synced to their cloud. It uses the following logic
- When you start the game
-
- Have any files been changed since last run?
-
- If a file in the cloud is newer than a local one (you have played on another computer) it downloads the new file to your computer
- If a file on your computer is newer than the cloud one (you have made local changes or played offline) it uploads the newer file to the cloud.
- If a file is missing in either the cloud or locally, it gets re-synced to or from the cloud.
- When you quit the game
-
- Have any files been changed since you stated?
-
- If a file on your computer has changed since the start, it gets uploaded to the cloud
- If a new file on your computer has been created since last start, it gets uploaded to the cloud
- If a file have been deleted on your computer, it also gets deleted in the cloud
Therefore you can simply delete .cfg-files while the game is running and they will be deleted after you quit the game. This does not work for .pak and .pkz files however, since they are locked by q2pro while the game is running there is no way for you the delete them during that time.
Running the "clc" command on a file you want to delete, simply flushes the its content and make it a zero byte file. When such a file gets synced to steam it will delete the file with the corresponding name in the cloud. When a sync has been triggered with this zero byte file, you can also delete the file from your computer. This is a inconvenient workaround, but it’s unfortunately how it works.