Browse Source
* add appmanifest files to data * refactor: improve appmanifest check and force update logic The code changes refactor the `fn_appmanifest_check` function in the `core_steamcmd.sh` file. The improvements include: - Checking if `BytesDownloaded` and `BytesToDownload` match, and forcing an update if they don't. - Checking if `BytesStaged` and `BytesToStage` match, and forcing an update if they don't. - For GoldSrc engine, checking if `SharedDepots` exists in the appmanifest file, and forcing an update if it doesn't. - Fetching missing appmanifest files from GitHub for specific game shortnames. These changes enhance the reliability of the appmanifest check process and ensure that updates are forced when necessary. * a * refactor: improve removal of appinfo.vdf file The code has been refactored to improve the removal of the appinfo.vdf file. The find command now redirects error output to /dev/null for a cleaner execution. * a * fn_check_steamcmd_appmanifest is now a full check * a * a * feat: add support for fetching appmanifest files This commit adds support for fetching appmanifest files from the GitHub repository. The code now fetches the appropriate appmanifest files based on the game's shortname and updates them in the serverfiles/steamapps directory. This change ensures that the correct appmanifest files are used, fixing an issue related to updating certain games. * more appmanifest files * feat: add appmanifest_10.acf for Counter-Strike Added the appmanifest_10.acf file for Counter-Strike to resolve an issue with missing SharedDepots. This commit fetches the necessary files from GitHub and forces an update to correct the issue.pull/4268/head
committed by
GitHub
47 changed files with 1957 additions and 7 deletions
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984402" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984404" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984267" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561200949853436" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984405" |
||||
|
"SizeOnDisk" "03" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984407" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984269" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561200402315446" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1666731530" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1666731530" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "80" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike: Condition Zero" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1666731530" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"81" |
||||
|
{ |
||||
|
"manifest" "3601230779843470737" |
||||
|
"size" "415387682" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1666731360" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561201630089482" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"81" "80" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "czero" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "czero" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984302" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984304" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984230" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561201379539094" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" 0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984403" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "40" |
||||
|
"Universe" "1" |
||||
|
"name" "Deathmatch Classic" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984402" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"41" |
||||
|
{ |
||||
|
"manifest" "2010889186716175170" |
||||
|
"size" "48239254" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984405" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984269" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561201891266584" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"41" "40" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "dmc" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "dmc" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688988451" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "30" |
||||
|
"Universe" "1" |
||||
|
"name" "Day of Defeat" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688988451" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"31" |
||||
|
{ |
||||
|
"manifest" "3826716661969602728" |
||||
|
"size" "391387184" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688988452" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688988429" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561201442771088" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"31" "30" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "dod" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "dod" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984411" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984413" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,47 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984301" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561199593999446" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984412" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984414" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984290" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561199772965246" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984434" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "50" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life: Opposing Force" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984434" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"51" |
||||
|
{ |
||||
|
"manifest" "789184054796507140" |
||||
|
"size" "286265390" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984437" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688984298" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561198622612838" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"51" "50" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "gearbox" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "gearbox" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "appid_10" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688999004" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "60" |
||||
|
"Universe" "1" |
||||
|
"name" "appid_60" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688999004" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"61" |
||||
|
{ |
||||
|
"manifest" "4560730344969588055" |
||||
|
"size" "17605146" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "appid_70" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688999004" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688999004" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561198882404437" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"61" "60" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "ricochet" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "ricochet" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688998186" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "20" |
||||
|
"Universe" "1" |
||||
|
"name" "Team Fortress Classic" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688998186" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"21" |
||||
|
{ |
||||
|
"manifest" "7841127166138118042" |
||||
|
"size" "124989202" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688998186" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688998186" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561201883029803" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
"21" "20" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "tfc" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "tfc" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688983936" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688983937" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688983870" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561202249148738" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "10" |
||||
|
"Universe" "1" |
||||
|
"name" "Counter-Strike" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688998186" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"11" |
||||
|
{ |
||||
|
"manifest" "4720911300072406946" |
||||
|
"size" "292616113" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "70" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life" |
||||
|
"StateFlags" "68" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688983882" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "0" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"1" |
||||
|
{ |
||||
|
"manifest" "5928322771446233610" |
||||
|
"size" "429833890" |
||||
|
} |
||||
|
"71" |
||||
|
{ |
||||
|
"manifest" "9183617604528345869" |
||||
|
"size" "15302314" |
||||
|
} |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
"AppState" |
||||
|
{ |
||||
|
"appid" "90" |
||||
|
"Universe" "1" |
||||
|
"name" "Half-Life Dedicated Server" |
||||
|
"StateFlags" "4" |
||||
|
"installdir" "Half-Life" |
||||
|
"LastUpdated" "1688983843" |
||||
|
"SizeOnDisk" "0" |
||||
|
"StagingSize" "0" |
||||
|
"buildid" "0" |
||||
|
"LastOwner" "76561200857512115" |
||||
|
"UpdateResult" "0" |
||||
|
"BytesToDownload" "0" |
||||
|
"BytesDownloaded" "0" |
||||
|
"BytesToStage" "0" |
||||
|
"BytesStaged" "0" |
||||
|
"TargetBuildID" "0" |
||||
|
"AutoUpdateBehavior" "0" |
||||
|
"AllowOtherDownloadsWhileRunning" "0" |
||||
|
"ScheduledAutoUpdate" "0" |
||||
|
"InstalledDepots" |
||||
|
{ |
||||
|
"4" |
||||
|
{ |
||||
|
"manifest" "8690279432129063737" |
||||
|
"size" "25737094" |
||||
|
} |
||||
|
"1006" |
||||
|
{ |
||||
|
"manifest" "6912453647411644579" |
||||
|
"size" "72573740" |
||||
|
} |
||||
|
} |
||||
|
"SharedDepots" |
||||
|
{ |
||||
|
"1" "70" |
||||
|
"11" "10" |
||||
|
"71" "70" |
||||
|
} |
||||
|
"UserConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
"MountedConfig" |
||||
|
{ |
||||
|
"mod" "cstrike" |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue