From d33b1530147a412e88a32bf1168ca3ac6e9718c6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 20 三月 2026 10:35:50 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(左慈所有技能;技能目标细分增加11-受控目标优先;敌友目标增加3-友方(一定不含自己);7011效果改为无技能目标时触发;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/DBCommon/CommonDefine.py | 6 +++++-
1 files changed, 5 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..9cc93b3 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 # 查询新的充值订单
@@ -466,5 +469,6 @@
gitMLGTGame = 17 # 17-咪噜港台
gitMLGTGameJF = 18 # 18-绝峰港台
gitHYYNGame = 19 # 19-欢游越南
+gitGaore = 20 # 20-高热 - 硬核渠道
--
Gitblit v1.8.0