From b61d2dfe79f9d3ef67a0561a0b640f888df32a58 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 31 十二月 2024 15:07:16 +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 20e03e0..c74e612 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py
@@ -23226,7 +23226,7 @@
     _fields_ = [
                   ("Cmd", c_ubyte),
                   ("SubCmd", c_ubyte),
-                  ("Type", c_ubyte),    # 0-取消匹配; 1-进行匹配
+                  ("Type", c_ubyte),    # 0-查询匹配;1-刷新匹配
                   ]
 
     def __init__(self):
@@ -23279,6 +23279,7 @@
                   ("Cmd", c_ubyte),
                   ("SubCmd", c_ubyte),
                   ("IsWin", c_ubyte),    #是否获胜
+                  ("TagPlayerID", c_int),    #目标玩家ID
                   ]
 
     def __init__(self):
@@ -23296,6 +23297,7 @@
         self.Cmd = 0xC1
         self.SubCmd = 0x08
         self.IsWin = 0
+        self.TagPlayerID = 0
         return
 
     def GetLength(self):
@@ -23308,12 +23310,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