SRCDS Steam group


CS:GO Can't Join Server [SOLVED]
#1
Smile 
CS:GO Server Unjoinable:

Server OS: Windows 7 Server 64 Bit

Processor: Intel Core i5-4670K @ 3.40GHz

Ram: 8GB

Game(s): Counter Strike Global Offensive

Start Up Command: -console -usercon -game csgo +net_public_adr 0.0.0.0 +port 27015 +-ip 0.0.0.0 +login anonymous +maxplayers 10 +game_mode 0 +mapgroup jailbreak -tickrate 200 +game_type 0 +game_mode 0 +map jb_obama_v5_beta

Admin Mods: SourceMod & MetaMod

NETWORK AND BANDWIDTH INFO
15.57mbps down
1.14mbps up
Router: Linksys WRT54GL
Local IP of Server: 192.168.1.102
External IP: 98.15.158.0
Ports :
UDP 1200 1200
UDP 26901 26901
UDP 27000 27015
TCP 27020 27039
UDP 27020 27020
TCP 27015 27015

Recently after trying to join my counter strike global offensive server created from this tutorial:
https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers

I receive the console error as follows:
Quote:Connecting to public(192.168.1.102:27015) ...
3587.104: Sending UDP connect to public IP 192.168.1.102:27015
Server using 'public' lobbies, requiring pw no, lobby id 0
RememberIPAddressForLobby: lobby 0 from address 192.168.1.102:27015
Grace request retry for unreserved server...
Retrying public(192.168.1.102:27015) ...
3587.109: Sending UDP connect to public IP 192.168.1.102:27015
Server using 'public' lobbies, requiring pw no, lobby id 0
RememberIPAddressForLobby: lobby 0 from address 192.168.1.102:27015
Server approved grace request...
Retrying connection to 192.168.1.102:27015, server requires lobby reservation but is unreserved.

The client then proceeds to fail to connect "After 10 Retries"
When the client tries to join the server nothing appears in the server console

Attached are my gamemodes_server.txt, server.cfg (as txt file),and a screenshot of server console containing a few error messages. Also a log file...

Any further information you may require I can provide...

Thanks In Advance,
-Zamp

EDIT: After a full wipe and reinstall it is working fine....


Attached Files
.png   1.png (Size: 80.01 KB / Downloads: 32)
.txt   gamemodes_server.txt (Size: 1.34 KB / Downloads: 52)
.txt   server.txt (Size: 982 bytes / Downloads: 40)
.txt   l192_168_001_102_27015_201404081953_000.txt (Size: 6.04 KB / Downloads: 34)
Reply
#2
you can try this. : gamemodes_server.txt
Code:
// Values here override the default gamemodes.txt

"GameModes_Server.txt"
{
  "gameTypes"
  {
    "classic"
    {
      "gameModes"
      {
        "casual"
        {

          "mapgroupsMP"            // List of mapgroups valid for this game mode
          {
            "mg_jailbreak"    ""
          }

        }
      }  
    }
  }

//////////////////////////////////////////////////////////////////////////////////////////////
// Map groups
//
// To use a mapgroup, it needs to be defined in a keyvalues
// block such as the example below, as well as listed in the
// 'mapgroupsMP' block within the game mode that will run it,
// such as the example above.
//
// Then adjust the startup mapgroup in your autoexec.cfg file.
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////

  "mapgroups"
  {
    "mg_jailbreak"                  // mapgroup definition
    {
      "name"      "mg_jailbreak"
      "maps"
      {
        "jb_obama_v5_beta"    ""
      }
    }
  }
}
You mg_mapgroup must match the one in statup line..
Ex

Startup +mapgroup mg_dd2only +map de_dust2

gamemods server
mg_mapgroup "mg_dd2only"
mg_mapgroupname "mg_dd2only"
etc..what your mapgroup is named dosent matter mg_gungame all over and jailbrake map in mapgroup dosent change a thing.. since maps can be freely named.
Reply
#3
This of of ours that works:

startupline: +mapgroup mg_dmd +map de_dust2

Code:
csgo/gamemodes_20150.txt

// To use this file, rename it to GameModes_Server.txt
//
// Values here override the default gamemodes.txt

"GameModes_20150.txt"
{
    "gameTypes"
    {
        "classic"
        {
            "gameModes"
            {
                "casual"
                {
                    "convars"
                    {
                    

                    }




                    
                    "mapgroupsMP"                        // List of mapgroups valid for this game mode
                    {
                        "mg_dmd"        ""
                    }
                }
            }    
        }
    }

//////////////////////////////////////////////////////////////////////////////////////////////
// Map groups
//
// To use a mapgroup, it needs to be defined in a keyvalues
// block such as the example below, as well as listed in the
// 'mapgroupsMP' block within the game mode that will run it,
// such as the example above.
//
// Then launch the server with '+mapgroup MAPGROUPNAME'
//
// Example:
//
// srcds -game csgo +game_mode 1 +mapgroup mg_bomb_se +map de_nuke_se
//
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////


    "mapgroups"
    {
        "mg_dmd"                                    // mapgroup definition
        {
            "name"            "mg_dmd"
            "maps"
            {
"de_dust2"        ""                            



            }
        }
    }
}

So you must add mg_jailbrake to your startupline and not just jailbreak
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)