View Single Post
ZEDD_Intensity
Senior Member
Join Date: Jun 2016
Old 11-29-2017 , 14:12   Re: tutorial of how to make servers by STEAMCMD
Reply With Quote #122

Hey there,

I've been running a cstrike test server since 2 years and I'm installing another server right now on a different VDS, and bumped into this error :
Quote:
Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
Error! App '90' state is 0x606 after update job.
As it seemed like app_update 90 never downloads a complete installation of the base HLDS files.

And YES, I know about this solution :
Quote:
Originally Posted by Arkshine View Post
It looks like SteamCMD has some difficulties to download dependencies' appmanifest files.
You can create the files yourself:

Code:
"AppState"
{
	"appid"		"$APPID"
	"Universe"	"1"
	"StateFlags"	"1090"
	"installdir"	"Half-Life"
}
You replace $APPID by the needed app id.
You have a list of app ids here: https://developer.valvesoftware.com/...pplication_IDs.

The base ids for every mod are 10 and 70 (which should install HLDM + Counter-Strike)
The relevant others ids are:
  • 20: Team Fortress Classic
  • 30: Day of Defeat
  • 40: Deathmatch Classic
  • 50: Opposing Force
  • 60: Ricochet
  • 80: Condition Zero

I've put such file in a GitHub repository (Daniel Gibbs's guide misses files)
You can use the following command to retrieve them at once:
  • Assuming your installation is located to /home/hlds; go to home/hlds/steamapps/ directory.
  • Download the relevant files depending your mod:
    • CS : for i in 10 70; do wget -q https://raw.githubusercontent.com/Arkshine/hlds-appmanifest/master/appmanifest_$i.acf -O appmanifest_$i.acf; done
    • CZ : for i in 10 70 80; do wget -q https://raw.githubusercontent.com/Arkshine/hlds-appmanifest/master/appmanifest_$i.acf -O appmanifest_$i.acf; done
    • DoD: for i in 10 70 30; do wget -q https://raw.githubusercontent.com/Arkshine/hlds-appmanifest/master/appmanifest_$i.acf -O appmanifest_$i.acf; done
      etc..
  • Then you need to execute steamcmd (like you usually do) several times (three or four times) until all is downloaded.
But seems like, I'm having the exact same problem even after updating the appmanifest by Arkshine.
Just a quick confirmation that, login anonymous OR login <accountname> isn't making any difference.

Tried spamming the app_update command, but it is rigidly stuck on there.

I hope this is an 'in-control' / 'fixable' error. Another note : Fix by Daniel Gibbs doesn't do anything as well.
If anyone's got another workaround, I'd appreciate it.
Regards,
ZEDD

EDIT : Don't you guys think it is funny how bugged SteamCMD is even when the game is almost outdated?
ALL I did was app_uninstall it and reinstall it, and I was looking out for a solution since over 4 hours.
PHP Code:
Steam>app_uninstall 90

Steam
>app_update 90
 Update state 
(0x3reconfiguringprogress0.00 (0)
 
Update state (0x3reconfiguringprogress0.00 (0)
 
Update state (0x61downloadingprogress0.00 (805630738)
 
Update state (0x61downloadingprogress2.33 (18773467 805630738)
 
Update state (0x61downloadingprogress7.63 (61484287 805630738)
 
Update state (0x61downloadingprogress11.65 (93822308 805630738)
 
Update state (0x61downloadingprogress17.25 (138982553 805630738)
 
Update state (0x61downloadingprogress19.45 (156682049 805630738)
 
Update state (0x61downloadingprogress23.99 (193304348 805630738)
 
Update state (0x61downloadingprogress30.23 (243540780 805630738)
 
Update state (0x61downloadingprogress33.76 (271970792 805630738)
 
Update state (0x61downloadingprogress35.38 (285014031 805630738)
 
Update state (0x61downloadingprogress40.01 (322314363 805630738)
 
Update state (0x61downloadingprogress46.87 (377632153 805630738)
 
Update state (0x61downloadingprogress54.84 (441838809 805630738)
 
Update state (0x61downloadingprogress62.68 (504978296 805630738)
 
Update state (0x61downloadingprogress67.51 (543870563 805630738)
 
Update state (0x61downloadingprogress73.51 (592252233 805630738)
 
Update state (0x61downloadingprogress76.98 (620182311 805630738)
 
Update state (0x61downloadingprogress81.34 (655292312 805630738)
 
Update state (0x61downloadingprogress84.80 (683191852 805630738)
 
Update state (0x61downloadingprogress88.00 (708974232 805630738)
 
Update state (0x61downloadingprogress89.54 (721334828 805630738)
 
Update state (0x61downloadingprogress91.42 (736481527 805630738)
 
Update state (0x61downloadingprogress91.88 (740203738 805630738)
 
Update state (0x61downloadingprogress94.62 (762280170 805630738)
 
Update state (0x61downloadingprogress99.87 (804582162 805630738)
 
Update state (0x61downloadingprogress99.87 (804582162 805630738)
SuccessApp '90' fully installed
__________________

Last edited by ZEDD_Intensity; 11-29-2017 at 14:49. Reason: FIXED
ZEDD_Intensity is offline