From a7ab0247c7b8eff06ad104bee39bc035384ca43e Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 23 七月 2025 12:08:22 +0800 Subject: [PATCH] 80 【常规】背包-服务端(增加背包购买格子;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py index de04dd9..3e2c3ba 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py @@ -237,7 +237,9 @@ gstSendDBMergeClientMsg = 127 # 通过groupID向DB发送消息,DB以gstBroadcastMergeClient广播 gstSendDBMergeClientListMsg = 128 # 通过group组向DB发送消息,DB以gstBroadcastMergeClient广播 gstMergePlayerData = 129 #// 向跨服汇报玩家(子服)数据 -gstMax = 130 #下面的数值 需要保持为 gstMax + 1 +gstDBLogic = 130 # GameServer 向db请求逻辑处理并返回,请求ID,类型,附加数据 +gstMax = 131 #下面的数值 需要保持为 gstMax + 1 + ########################### ELoginServerToDataServer define ############################# #LoginServer发送到DataServer的封包类型 @@ -337,7 +339,8 @@ dgBroadcastMergeClient = 0x60 + 23 dgMergerChildToCenter = 0x60 + 24 dgLoginMergeServer = 0x60 + 25 -dgKick = 0x60 + 26 +dgDBGameServerToDBLogicResult = 0x60 + 26 #GameServer向DB请求的回复信息tagDGGameServerToDBLogicResult + ########################### TBalanceServerToMapServer define ############################# #数据库回应封包类型#TBalanceServerToMapServer gmMapInitOk = 1 -- Gitblit v1.8.0