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