From 2deefd3b81f9cf6d04d3cdd5a60dfa37b70a1b6c Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sun, 26 Oct 2025 17:01:06 +0100 Subject: [PATCH] set exp gc version --- csgo/demo_loader.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/csgo/demo_loader.go b/csgo/demo_loader.go index cc7627a..42d66eb 100644 --- a/csgo/demo_loader.go +++ b/csgo/demo_loader.go @@ -365,14 +365,12 @@ func (dml *DemoMatchLoader) setPlaying() { func (dml *DemoMatchLoader) greetGC() { for !dml.GCReady { - var iNull uint32 = 0 + var cs2Version uint32 = 2000202 log.Debugf("[DL] Sending GC greeting") msg := protobuf.CMsgClientHello{} pVersion := steamlang.MsgClientLogon_CurrentProtocol msg.Version = &pVersion - msg.ClientSessionNeed = &iNull - msg.ClientLauncher = &iNull - msg.SteamLauncher = &iNull + msg.Version = &cs2Version dml.client.GC.Write(gamecoordinator.NewGCMsgProtobuf(APPID, uint32(protobuf.EGCBaseClientMsg_k_EMsgGCClientHello), &msg)) time.Sleep(1 * time.Second) }