From 055981a4685a066e17813fcbb8ce294e83fb7e18 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 18 三月 2026 18:00:34 +0800
Subject: [PATCH] 571 【荣耀战将】删档测试充值返利(增加验证其他服优先返利过的情况;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py |   16 ++++++++++++----
 1 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
index d0f7884..13a57ab 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
@@ -1405,6 +1405,7 @@
                   ("NowSecond", c_ubyte),    
                   ("NowMicSecond", c_int),    
                   ("WeekOfYear", c_ubyte),    #一年中的第几周
+                  ("OpenServerTime", c_int),    #开服时间戳
                   ]
 
     def __init__(self):
@@ -1433,6 +1434,7 @@
         self.NowSecond = 0
         self.NowMicSecond = 0
         self.WeekOfYear = 0
+        self.OpenServerTime = 0
         return
 
     def GetLength(self):
@@ -1456,7 +1458,8 @@
                                 NowMinute:%d,
                                 NowSecond:%d,
                                 NowMicSecond:%d,
-                                WeekOfYear:%d
+                                WeekOfYear:%d,
+                                OpenServerTime:%d
                                 '''\
                                 %(
                                 self.Cmd,
@@ -1472,7 +1475,8 @@
                                 self.NowMinute,
                                 self.NowSecond,
                                 self.NowMicSecond,
-                                self.WeekOfYear
+                                self.WeekOfYear,
+                                self.OpenServerTime
                                 )
         return DumpString
 
@@ -13068,6 +13072,7 @@
     _fields_ = [
                   ("MoneyType", c_ubyte),    
                   ("MoneyValue", c_int),    
+                  ("IsBind", c_ubyte),    # 同物品IsBind标记逻辑
                   ]
 
     def __init__(self):
@@ -13082,6 +13087,7 @@
     def Clear(self):
         self.MoneyType = 0
         self.MoneyValue = 0
+        self.IsBind = 0
         return
 
     def GetLength(self):
@@ -13093,11 +13099,13 @@
     def OutputString(self):
         DumpString = '''// A8 01 获得奖励信息 //tagMCGiveAwardInfo:
                                 MoneyType:%d,
-                                MoneyValue:%d
+                                MoneyValue:%d,
+                                IsBind:%d
                                 '''\
                                 %(
                                 self.MoneyType,
-                                self.MoneyValue
+                                self.MoneyValue,
+                                self.IsBind
                                 )
         return DumpString
 

--
Gitblit v1.8.0