AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   HL1 Servers (HLDS) (https://forums.alliedmods.net/forumdisplay.php?f=131)
-   -   SteamCMD error when installing mod 90 (https://forums.alliedmods.net/showthread.php?t=340145)

Easthawk 10-28-2022 07:37

SteamCMD error when installing mod 90
 
So i have had servers in the past..
Recently wanted to start a new CS:CZ server and went to download SteamCMD
However when trying to get the files it stays stuck.
This is what i get in console:
"Error! App '90' state is 0x6 after update job.
I've searched for the error online and it seems others had this issue as well, but no solution.
Does anyone here know what's going on?
https://i.ibb.co/vzSHgyH/Unavngivet.png

DruGzOG 10-28-2022 07:57

Re: SteamCMD error when installing mod 90
 
app_set_config 90 mod czero
app_update 90 validate (run this a few times, it will eventually begin downloading)

Easthawk 10-28-2022 10:16

Re: SteamCMD error when installing mod 90
 
I got it working.
My solution was to login instead of using anonymous login.
Thanks either way.

Infamanious 12-09-2022 18:24

Re: SteamCMD error when installing mod 90
 
Quote:

Originally Posted by DruGzOG (Post 2791730)
app_set_config 90 mod czero
app_update 90 validate (run this a few times, it will eventually begin downloading)

Does this method usually work? The normal fix is to simply login to a steam account, but i never thought about using czero since its essential the same. I'll do a test run and post back in a sec.

Infamanious 12-09-2022 18:30

Re: SteamCMD error when installing mod 90
 
I can confirm this method does not work, and the currently the only option is to login to a registered steam account.

DruGzOG 12-10-2022 05:25

Re: SteamCMD error when installing mod 90
 
Quote:

Originally Posted by Infamanious (Post 2794872)
I can confirm this method does not work, and the currently the only option is to login to a registered steam account.

It does work. I've done it a few times instead of logging into a steam account.

Infamanious 12-14-2022 04:29

Re: SteamCMD error when installing mod 90
 
I installed steamcmd via yay, then started steamcmd and entered these commands. force_install_dir ~/blah/blah, login anonymous, app_set_config 90 mod czero, app_update 90 validate. I tried app_update 90 validate 4 times and it did not work.

Bacardi 12-14-2022 04:59

Re: SteamCMD error when installing mod 90
 
What I remember, Install hlds first.
Then install mod to same path.

Mordekay 12-14-2022 07:25

Re: SteamCMD error when installing mod 90
 
Quote:

Originally Posted by Bacardi (Post 2795170)
What I remember, Install hlds first.
Then install mod to same path.

I never did that. I always used my steam account to login and did the installation command ONE time. Never needed to do it multiple times.
This solution seems to be too difficult to use.

Bacardi 12-14-2022 09:56

Re: SteamCMD error when installing mod 90
 
You are right.

And this works fine on Windows
update.txt
Code:

logout
force_install_dir "../Half-Life czero"
login anonymous
app_set_config 90 mod czero
app_update 90 validate

steamcmd_run.bat
Code:

@echo off
echo.
echo SteamCMD started!
echo.

steamcmd +runscript update.txt

echo.
echo SteamCMD finished!
echo.

timeout /T 5 /nobreak

- If steamcmd not start download at first launch, try again. SteamCMD maybe update itself first.



hlds.exe
Code:

-console -game czero +map cs_italy -maxplayers 10
- When launch hlds.exe server and it shutdown itself.
Server was missing steam_appid.txt file and it created new one.
Launch server again.

- When server is running, but notice you
Code:

♥MasterRequestRestart
Your server is out of date.  Please update and restart.

...one reason is server started with wrong steam_appid number.
This happen if steam_appid.txt file have wrong number before server is launched.
But server will overwrite number from file when launched. You just need start server second time.
- Happens only on CZERO mod ??

You could create batch file to run right mode with right steam_appid number.
czero.bat
Code:

@echo off
cls

:czero

echo 80> steam_appid.txt
start /wait hlds.exe -console -game czero +map cs_italy -maxplayers 10

goto czero

hl.bat
Code:

@echo off
cls

:hl

echo 70> steam_appid.txt
start /wait hlds.exe -console -game valve +map boot_camp -maxplayers 10

goto hl


cstrike.bat
Code:

@echo off
cls

:cstrike

echo 10> steam_appid.txt
start /wait hlds.exe -console -game cstrike +map cs_italy -maxplayers 10

goto cstrike



All times are GMT -4. The time now is 07:27.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.