From 22c964784d465c77365c2495f6d43117618d8482 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 26 十二月 2024 16:52:25 +0800 Subject: [PATCH] 10350 【后端】【越南】【英文】【BT】【砍树】跨服竞技场优化 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py index 27aa94f..07f9e40 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py @@ -23041,7 +23041,7 @@ _fields_ = [ ("Cmd", c_ubyte), ("SubCmd", c_ubyte), - ("Type", c_ubyte), # 0-取消匹配; 1-进行匹配 + ("Type", c_ubyte), # 0-查询匹配;1-刷新匹配 ] def __init__(self): @@ -23094,6 +23094,7 @@ ("Cmd", c_ubyte), ("SubCmd", c_ubyte), ("IsWin", c_ubyte), #是否获胜 + ("TagPlayerID", c_int), #目标玩家ID ] def __init__(self): @@ -23111,6 +23112,7 @@ self.Cmd = 0xC1 self.SubCmd = 0x08 self.IsWin = 0 + self.TagPlayerID = 0 return def GetLength(self): @@ -23123,12 +23125,14 @@ DumpString = '''// C1 08 跨服PK挑战机器人结算 //tagCMCrossRealmPKRobotOver: Cmd:%s, SubCmd:%s, - IsWin:%d + IsWin:%d, + TagPlayerID:%d '''\ %( self.Cmd, self.SubCmd, - self.IsWin + self.IsWin, + self.TagPlayerID ) return DumpString -- Gitblit v1.8.0