hxp
2023-10-07 8c99cfdef4ee827c08641defb6e0ac1f3c2899e0
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
@@ -16143,6 +16143,8 @@
                  ("RecordID", c_ubyte),    
                  ("TodayPayCount", c_ushort),    # 今日已购买次数
                  ("TotalPayCount", c_int),    # 累计总购买次数
                  ("WeekPayCount", c_ushort),    # 周总购买次数
                  ("MonthPayCount", c_ushort),    # 月总购买次数
                  ]
    def __init__(self):
@@ -16158,6 +16160,8 @@
        self.RecordID = 0
        self.TodayPayCount = 0
        self.TotalPayCount = 0
        self.WeekPayCount = 0
        self.MonthPayCount = 0
        return
    def GetLength(self):
@@ -16170,12 +16174,16 @@
        DumpString = '''// A1 10 充值购买次数信息 //tagMCCoinToGoldCountInfo:
                                RecordID:%d,
                                TodayPayCount:%d,
                                TotalPayCount:%d
                                TotalPayCount:%d,
                                WeekPayCount:%d,
                                MonthPayCount:%d
                                '''\
                                %(
                                self.RecordID,
                                self.TodayPayCount,
                                self.TotalPayCount
                                self.TotalPayCount,
                                self.WeekPayCount,
                                self.MonthPayCount
                                )
        return DumpString