hxp
2025-10-09 e4a5fbde4c804262a7cfd17d89d427b4ff36accb
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py
@@ -5982,14 +5982,14 @@
#------------------------------------------------------
#A5 09 玩家签到 #tagCMDaySign
#A5 09 玩家签到领奖 #tagCSDaySign
class  tagCMDaySign(Structure):
class  tagCSDaySign(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("Day", c_ubyte),    #默认0表示当日签到,可扩展做补签用
                  ("Day", c_ubyte),    # 第x天,从1开始
                  ]
    def __init__(self):
@@ -6010,13 +6010,13 @@
        return
    def GetLength(self):
        return sizeof(tagCMDaySign)
        return sizeof(tagCSDaySign)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''//A5 09 玩家签到 //tagCMDaySign:
        DumpString = '''//A5 09 玩家签到领奖 //tagCSDaySign:
                                Cmd:%s,
                                SubCmd:%s,
                                Day:%d
@@ -6029,8 +6029,8 @@
        return DumpString
m_NAtagCMDaySign=tagCMDaySign()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMDaySign.Cmd,m_NAtagCMDaySign.SubCmd))] = m_NAtagCMDaySign
m_NAtagCSDaySign=tagCSDaySign()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCSDaySign.Cmd,m_NAtagCSDaySign.SubCmd))] = m_NAtagCSDaySign
#------------------------------------------------------
@@ -6731,62 +6731,6 @@
m_NAtagCMGetInvestReward=tagCMGetInvestReward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetInvestReward.Cmd,m_NAtagCMGetInvestReward.SubCmd))] = m_NAtagCMGetInvestReward
#------------------------------------------------------
#A5 06 玩家领取在线奖励 #tagCMGetOnlinePrize
class  tagCMGetOnlinePrize(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("Index", c_ubyte),    # 奖励索引,其他按顺序
                  ("IsDaily", c_ubyte),    # 是否领取每日日常的奖励,是发1,如果领取定制创角天奖励的则默认发0即可
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xA5
        self.SubCmd = 0x06
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xA5
        self.SubCmd = 0x06
        self.Index = 0
        self.IsDaily = 0
        return
    def GetLength(self):
        return sizeof(tagCMGetOnlinePrize)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''//A5 06 玩家领取在线奖励 //tagCMGetOnlinePrize:
                                Cmd:%s,
                                SubCmd:%s,
                                Index:%d,
                                IsDaily:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.Index,
                                self.IsDaily
                                )
        return DumpString
m_NAtagCMGetOnlinePrize=tagCMGetOnlinePrize()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetOnlinePrize.Cmd,m_NAtagCMGetOnlinePrize.SubCmd))] = m_NAtagCMGetOnlinePrize
#------------------------------------------------------
@@ -7693,54 +7637,6 @@
m_NAtagCMPlayerGetReward=tagCMPlayerGetReward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMPlayerGetReward.Head.Cmd,m_NAtagCMPlayerGetReward.Head.SubCmd))] = m_NAtagCMPlayerGetReward
#------------------------------------------------------
#A5 07 查询在线奖励 #tagCMQueryOnlinePrizeInfo
class  tagCMQueryOnlinePrizeInfo(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xA5
        self.SubCmd = 0x07
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xA5
        self.SubCmd = 0x07
        return
    def GetLength(self):
        return sizeof(tagCMQueryOnlinePrizeInfo)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''//A5 07 查询在线奖励 //tagCMQueryOnlinePrizeInfo:
                                Cmd:%s,
                                SubCmd:%s
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd
                                )
        return DumpString
m_NAtagCMQueryOnlinePrizeInfo=tagCMQueryOnlinePrizeInfo()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMQueryOnlinePrizeInfo.Cmd,m_NAtagCMQueryOnlinePrizeInfo.SubCmd))] = m_NAtagCMQueryOnlinePrizeInfo
#------------------------------------------------------