Synergy

Synergy

View Stats:
Smimg Jun 26, 2020 @ 10:02pm
Unable to start Linux dedicated server (Ubuntu 18.04)
Launch command
./srcds_run -console -game synergy -port 27015 +map d1_trainstation_01 +exec forked_1.cfg

Console Dump

Auto detecting CPU Using default binary: ./srcds_linux Enabling debug mode ./srcds_run: 1: ./srcds_run: gdb: not found WARNING: Please install gdb first. goto http://www.gnu.org/software/gdb/ Server will auto-restart if there is a crash. Using breakpad minidump system Using breakpad crash handler Setting breakpad minidump AppID = 17520 Forcing breakpad minidump interfaces to load Looking up breakpad interfaces from steamclient Calling BreakpadMiniDumpSystemInit File hash information not found: Hashing all VPK files for pure server operation. Loaded 0 VPK file hashes from /home/*username*/synergy/Synergy/synergy/synergy_pak.vpk for pure server operation. ConVarRef mat_dxlevel doesn't point to an existing ConVar server_srv.so loaded for "Synergy 56.16" ContentLoader[SV]: Failed to located SourceMods directory! SourceMods are Disabled! SourceMod 'City 7: Toronto Conflict' not found. SourceMod 'Half-Life 2: Riot Act' not found. SourceMod 'Rock 24' not found. SourceMod 'Black Mesa' not found. SourceMod 'Half-Life 2: Calamity' not found. SourceMod 'Dangerous World' not found. SourceMod 'Half-Life 2: Offshore' not found. Failed to find Half-Life 2's VPKs! If this is a dedicated server, your directory structure is incorrect. Expecting: <root>/Synergy/synergy/ <root>/Half-Life2/hl2/Missing shutdown function for sv.Init( bDedicated ) : sv.Shutdown() Missing shutdown function for g_GameEventManager.Init() : g_GameEventManager.Shutdown() Missing shutdown function for NET_Init( bDedicated ) : NET_Shutdown() Missing shutdown function for Filter_Init() : Filter_Shutdown() Missing shutdown function for COM_Init() : COM_Shutdown() Missing shutdown function for g_pCVar->Init() : g_pCVar->Shutdown() Missing shutdown function for Cmd_Init() : Cmd_Shutdown() Missing shutdown function for Cbuf_Init() : Cbuf_Shutdown() Missing shutdown function for Con_Init() : Con_Shutdown() Missing shutdown function for Memory_Init() : Memory_Shutdown() Missing shutdown function for Host_Init( s_bIsDedicated ) : Host_Shutdown() Missing shutdown function for Sys_InitMemory() : Sys_ShutdownMemory() Missing shutdown function for Sys_Init() : Sys_Shutdown() Missing shutdown function for COM_InitFilesystem( info.m_pInitialMod ) : COM_ShutdownFileSystem() Add "-debug" to the ./srcds_run command line to generate a debug.log to help with solving this problem Sat Jun 27 04:43:54 UTC 2020: Server restart in 10 seconds Sat Jun 27 04:43:55 UTC 2020: Server Quit

1/2
Last edited by Smimg; Jun 26, 2020 @ 10:04pm
Originally posted by Balim:
Those are all fine, except for the "Could not establish connection to Steam servers." message.
If it doesn't establish connection after a few mins, you might have to have a Steam client running on the server for it to connect. Even if it isn't logged in, just having the client running will set up the connections.

The Map_IsValid messages are all from Synergy/synergy/mapcycle.txt and Synergy/synergy/maplist.txt the issue is that the maps are not seen as valid unless the current mount point contains those maps. For example, if you changed level to ep2_outland_01 it would mount HL2, Ep1, and Ep2 and the only Map_IsValid messages you would get are the metastasis maps.
< >
Showing 1-8 of 8 comments
Smimg Jun 26, 2020 @ 10:02pm 
Synergy gameinfo.txt

"GameInfo" { title " synergy" game "Synergy" type multiplayer_only developer "Synergy Mod Team" developer_url "http://synergymod.net" manual "http://synergymod.net/Documents" icon "materials/synergy" GameData "../synergy/SDK/synergy.fgd" nomodels 1 nohimodel 1 nocrosshair 1 supportsvr 1 filesystem { SteamAppId 17520 SearchPaths { // Synergy paths game+mod+game_write+mod_write+default_write_path |gameinfo_path|. gamebin |gameinfo_path|bin game |gameinfo_path|synergy_pak.vpk // Required Half-Life 2 content (assumes default install locaton, this section needs to be edited otherwise) // These are relative paths from this file (gameinfo.txt), to the required files. // If you edit this for a non-default install location, please keep a backup of your changes for this file may update again. platform "|gameinfo_path|../../Half-Life 2/platform/platform_misc.vpk" game "|gameinfo_path|../../Half-Life2/hl2/hl2_misc.vpk" game "|gameinfo_path|../../Half-Life2/hl2/hl2_pak.vpk" game "|gameinfo_path|../../Half-Life2/hl2/hl2_sound_misc.vpk" game "|gameinfo_path|../../Half-Life2/hl2/hl2_sound_vo_english.vpk" game "|gameinfo_path|../../Half-Life2/hl2/hl2_textures.vpk" platform "|gameinfo_path|../../Half-Life2/platform" game "|gameinfo_path|../../Half-Life2/hl2" // Extra content for Hammer game "|gameinfo_path|../../Half-Life2/ep2/ep2_pak.vpk" game "|gameinfo_path|../../Half-Life2/episodic/ep1_pak.vpk" //game "|gameinfo_path|../../Half-Life2/lostcoast/lostcoast_pak.vpk" //game "|gameinfo_path|../../Half-Life2/hl1/hl1_pak.vpk" //game "|gameinfo_path|../../Half-Life2/hl1_hd/hl1_hd_pak.vpk" // [Add any additional content for Hammer to mount here] // downloaded content here game+download |gameinfo_path|download } } }


Synergy is installed under /home/*username*/synergy/Synergy/
Half-Life 2 is installed under /home/*username*/synergy/Half-Life2


This is a clean install with only Half-Life 2.

My mount.cache file is under: /home/*username*/synergy/Synergy/synergy/
and contains "hl2"

2/2
Last edited by Smimg; Jun 26, 2020 @ 10:05pm
Balim Jun 26, 2020 @ 10:51pm 
Try using the full default paths, and the .so workarounds.
You can also use this: https://github.com/Balimbanana/SourceScripts/blob/master/unix/syndsinstall.sh
which you can get in wget with:
Place the script in the directory that you want the server to be installed in, then
chmod +x ./syndsinstall.sh ./syndsinstall.sh

mount.cache is deprecated and is not used, same with any modifications to gameinfo.txt apart from some base things like title and Hammer content.

Edit:
Also, while the error shows "<root>/Half-Life2/hl2" there is a space required for the path as
<root>/Half-Life\ 2/hl2
Last edited by Balim; Jun 26, 2020 @ 10:53pm
Smimg Jun 27, 2020 @ 8:55am 
Originally posted by Balimbanana:
Try using the full default paths, and the .so workarounds.
You can also use this: https://github.com/Balimbanana/SourceScripts/blob/master/unix/syndsinstall.sh
which you can get in wget with:
Place the script in the directory that you want the server to be installed in, then
chmod +x ./syndsinstall.sh ./syndsinstall.sh

mount.cache is deprecated and is not used, same with any modifications to gameinfo.txt apart from some base things like title and Hammer content.

Edit:
Also, while the error shows "<root>/Half-Life2/hl2" there is a space required for the path as
<root>/Half-Life\ 2/hl2
When I run the script it says:
This script is not being run from the SteamCMD directory You can download SteamCMD by entering the directory you want to install it to, or enter the full directory path where SteamCMD is here: If you don't enter anything, it will install to where this script is being run.

Yet I already have SteamCMD installed (automatically)
Will this install SteamCMD again?
Smimg Jun 27, 2020 @ 9:27am 
Originally posted by Balimbanana:
Try using the full default paths, and the .so workarounds.
You can also use this: https://github.com/Balimbanana/SourceScripts/blob/master/unix/syndsinstall.sh
which you can get in wget with:
Place the script in the directory that you want the server to be installed in, then
chmod +x ./syndsinstall.sh ./syndsinstall.sh

mount.cache is deprecated and is not used, same with any modifications to gameinfo.txt apart from some base things like title and Hammer content.

Edit:
Also, while the error shows "<root>/Half-Life2/hl2" there is a space required for the path as
<root>/Half-Life\ 2/hl2

Tried installing synergy using the script yet when I try to run it I get a new error:


Auto detecting CPU Using default binary: ./srcds_linux Server will auto-restart if there is a crash. Using breakpad minidump system Using breakpad crash handler Setting breakpad minidump AppID = 17520 Forcing breakpad minidump interfaces to load Looking up breakpad interfaces from steamclient Calling BreakpadMiniDumpSystemInit File hash information not found: Hashing all VPK files for pure server operation. Loaded 0 VPK file hashes from /home/*username*/synergy/steamapps/common/Synergy/synergy/synergy_pak.vpk for pure server operation. Loaded 5 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/platform/platform_misc.vpk for pure server operation. Loaded 434 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/hl2/hl2_misc.vpk for pure server operation. Loaded 19 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/hl2/hl2_pak.vpk for pure server operation. Loaded 382 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/hl2/hl2_sound_misc.vpk for pure server operation. Loaded 574 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/hl2/hl2_sound_vo_english.vpk for pure server operation. Loaded 1219 VPK file hashes from /home/*username*/synergy/steamapps/common/Half-Life 2/hl2/hl2_textures.vpk for pure server operation. ConVarRef mat_dxlevel doesn't point to an existing ConVar server_srv.so loaded for "Synergy 56.16" ContentLoader[SV]: Failed to located SourceMods directory! SourceMods are Disabled! SourceMod 'City 7: Toronto Conflict' not found. SourceMod 'Half-Life 2: Riot Act' not found. SourceMod 'Rock 24' not found. SourceMod 'Black Mesa' not found. SourceMod 'Half-Life 2: Calamity' not found. SourceMod 'Dangerous World' not found. ContentLoader[SV]: Found game 'Half-Life 2' in '/home/*username*/synergy/steamapps/common/Half-Life 2/hl2/' ContentLoader[SV]: Found game 'Half-Life 2: Lost Coast' in '/home/*username*/synergy/steamapps/common/Half-Life 2/lostcoast/' SourceMod 'Half-Life 2: Offshore' not found. ContentLoader[SV]: ERROR: Failed to load resource/GameSpecificClassnames.txt! Unable to remove /home/*username*/synergy/steamapps/common/Synergy/synergy/gamestats.log! Unable to remove /home/*username*/synergy/steamapps/common/Synergy/synergy/gamestats.log! failed to dlopen /home/*username*/synergy/steamapps/common/Synergy/synergy/addons/metamod/bin/linux64/server.so error=/home/*username*/synergy/steamapps/common/Synergy/synergy/addons/metamod/bin/linux64/server.so: wrong ELF class: ELFCLASS64 Unable to load plugin "addons/metamod/bin/linux64/server" maxplayers set to 6 'config.cfg' not present; not executing. 'forked_1.cfg' not present; not executing. Network: IP 127.0.1.1, mode MP, dedicated Yes, ports 27015 SV / 27005 CL Error loading cfg/pure_server_minimal.txt Found invalid
1/3
Last edited by Smimg; Jun 27, 2020 @ 9:29am
Smimg Jun 27, 2020 @ 9:27am 
lump file 'maps/d1_trainstation_01_l_0.lmp'. Lump Id: 1819438967 Found invalid lump file 'maps/d1_trainstation_01_l_0.lmp'. Lump Id: 1819438967 Found invalid lump file 'maps/d1_trainstation_01_l_0.lmp'. Lump Id: 1819438967 [SM] Parsed custom gamedata override file: sdktools.games/custom/game.synergy.txt CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_07.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_08.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_09.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_1.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_2.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_3.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4b.bsp' Read 75/256 valid map names from 'maplist.txt' for vote system ConVarRef room_type doesn't point to an existing ConVar Executing dedicated server config file server.cfg Using map cycle file 'mapcycle.txt'. ('cfg/mapcycle.txt' was not found.) CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_00.bsp' Invalid map 'ep1_citadel_00' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_01.bsp' Invalid map 'ep1_citadel_01' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02.bsp' Invalid map 'ep1_citadel_02' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02b.bsp' Invalid map 'ep1_citadel_02b' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_03.bsp' Invalid map 'ep1_citadel_03' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_04.bsp' Invalid map 'ep1_citadel_04' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00.bsp' Invalid map 'ep1_c17_00' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00a.bsp' Invalid map 'ep1_c17_00a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_01.bsp' Invalid map 'ep1_c17_01' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02.bsp' Invalid map 'ep1_c17_02' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02a.bsp' Invalid map 'ep1_c17_02a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02b.bsp' Invalid map 'ep1_c17_02b' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_05.bsp' Invalid map 'ep1_c17_05' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_06.bsp' Invalid map 'ep1_c17_06' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01.bsp' Invalid map 'ep2_outland_01' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01a.bsp' Invalid map 'ep2_outland_01a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_02.bsp' Invalid map 'ep2_outland_02' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_03.bsp' Invalid map 'ep2_outland_03' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_04.bsp' Invalid map 'ep2_outland_04' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_05.bsp' Invalid map 'ep2_outland_05' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06.bsp' Invalid map 'ep2_outland_06' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06a.bsp' Invalid map 'ep2_outland_06a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_07.bsp' Invalid map 'ep2_outland_07' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_08.bsp' Invalid map 'ep2_outland_08' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_09.bsp' Invalid map 'ep2_outland_09' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10.bsp' Invalid map 'ep2_outland_10' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10a.bsp' Invalid map 'ep2_outland_10a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11.bsp' Invalid map 'ep2_outland_11' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11a.bsp' Invalid map 'ep2_outland_11a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11b.bsp' Invalid map 'ep2_outland_11b' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12.bsp' Invalid map 'ep2_outland_12' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12a.bsp' Invalid map 'ep2_outland_12a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/metastasis_1.bsp' Invalid map 'metastasis_1' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/metastasis_2.bsp' Invalid map 'metastasis_2' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/metastasis_3.bsp' Invalid map 'metastasis_3' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/metastasis_4a.bsp' Invalid map 'metastasis_4a' included in map cycle file. Ignored. CModelLoader::Map_IsValid: No such map 'maps/metastasis_4b.bsp' Invalid map 'metastasis_4b' included in map cycle file. Ignored. NoBans: read 0 lines from file KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/eli_sheet.vmtVertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/cho_facemap.vmt VertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/boots_tactical.vmt VertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/eli_sheet.vmtVertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/cho_facemap.vmt VertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/boots_tactical.vmt
2/3
Last edited by Smimg; Jun 27, 2020 @ 9:29am
Smimg Jun 27, 2020 @ 9:28am 
VertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/citizen_sheet_1.vmt VertexLitGeneric, KeyValues Error: RecursiveLoadFromBuffer: got EOF instead of keyname in file materials/models/humans/hero/citizen_sheet_1.vmt VertexLitGeneric, Error reading weapon data file for: weapon_oldmanharpoon info_hint (HammerID: 0, position (-5596.00, -904.00, 147.69)) with no hint type. info_hint (HammerID: 0, position (-5608.00, -1176.00, 111.69)) with no hint type. info_hint (HammerID: 0, position (-5608.00, -1280.00, 155.69)) with no hint type. Set motd from file 'motd.txt'. ('cfg/motd.txt' was not found.) 'cfg/motd_text.txt' not found; not loaded ConVarRef dsp_speaker doesn't point to an existing ConVar ConVarRef dsp_speaker doesn't point to an existing ConVar ConVarRef dsp_speaker doesn't point to an existing ConVar Dead end link: pod_player24 Dead end link: pod_track_R_07 Dead end link: pod_track_L_08 Initializing Steam libraries for INSECURE Internet server. Authentication and VAC not requested. [S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed. Looking up breakpad interfaces from steamclient Calling BreakpadMiniDumpSystemInit No account token specified; logging into anonymous game server account. (Use sv_setsteamaccount to login to a persistent account.) 'server.cfg' not present; not executing. Server is hibernating CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_07.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_08.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_09.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_1.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_2.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_3.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_citadel_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_00a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_02b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep1_c17_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_01a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_02.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_03.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_04.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_05.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_06a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_07.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_08.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_09.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_10a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11a.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_11b.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12.bsp' CModelLoader::Map_IsValid: No such map 'maps/ep2_outland_12a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_1.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_2.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_3.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4a.bsp' CModelLoader::Map_IsValid: No such map 'maps/metastasis_4b.bsp' Could not establish connection to Steam servers. (Result = 3) Could not establish connection to Steam servers. (Result = 3)
3/3
Last edited by Smimg; Jun 27, 2020 @ 9:29am
The author of this thread has indicated that this post answers the original topic.
Balim Jun 27, 2020 @ 12:49pm 
Those are all fine, except for the "Could not establish connection to Steam servers." message.
If it doesn't establish connection after a few mins, you might have to have a Steam client running on the server for it to connect. Even if it isn't logged in, just having the client running will set up the connections.

The Map_IsValid messages are all from Synergy/synergy/mapcycle.txt and Synergy/synergy/maplist.txt the issue is that the maps are not seen as valid unless the current mount point contains those maps. For example, if you changed level to ep2_outland_01 it would mount HL2, Ep1, and Ep2 and the only Map_IsValid messages you would get are the metastasis maps.
Smimg Jun 27, 2020 @ 3:15pm 
Originally posted by Balimbanana:
Those are all fine, except for the "Could not establish connection to Steam servers." message.
If it doesn't establish connection after a few mins, you might have to have a Steam client running on the server for it to connect. Even if it isn't logged in, just having the client running will set up the connections.

The Map_IsValid messages are all from Synergy/synergy/mapcycle.txt and Synergy/synergy/maplist.txt the issue is that the maps are not seen as valid unless the current mount point contains those maps. For example, if you changed level to ep2_outland_01 it would mount HL2, Ep1, and Ep2 and the only Map_IsValid messages you would get are the metastasis maps.
Running SteamCMD in the background solved it, thank you!
< >
Showing 1-8 of 8 comments
Per page: 1530 50