From a075f7841fb2d0a3b32bf10c8bc2df5bf02d6acb Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期日, 14 十二月 2025 14:24:28 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(贾诩所有技能;5022效果支持配置buff额外属性计算方式;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py | 5 ++++-
1 files changed, 4 insertions(+), 1 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 3e2c3ba..e719b95 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
@@ -23,6 +23,9 @@
isDebugVersion = os.path.exists("BBF84B34-357E-435B-B3FF-D60370AAA6ED")
return isDebugVersion
+# 内网服登录不用验证
+def IsInsideLogin():
+ return os.path.exists(os.getcwd() + "\\ServerConfig\\dontchecklogin")
DATASAVE_MARK = 0xFF88
@@ -229,7 +232,7 @@
gstMergeRegisterPlayer = 119 #报名跨服战
gstMergeQueryRegisterResult = 120 #查询报名结果,即查询帐号密码
gstGeneralDBOper = 121 #通用数据库操作包
-gstBroadcastMergeClient = 122 #广播跨服客户端
+gstCrossServerToServerPack = 122 #跨服使用 服务器之间的封包
gstDiapatchFamilyID = 123 #分配家族ID
gstMergerChildToCenter = 124
gstQueryRecharge= 125 # 查询新的充值订单
--
Gitblit v1.8.0