ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
@@ -12615,62 +12615,6 @@
#------------------------------------------------------
# AB 07 领取节日登陆奖励 #tagCMGetFestivalLoginAward
class  tagCMGetFestivalLoginAward(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("FestivalType", c_ubyte),    # 节日类型
                  ("DayIndex", c_ubyte),    # 节日天 <从节日活动开始日0天开始>
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xAB
        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 = 0xAB
        self.SubCmd = 0x07
        self.FestivalType = 0
        self.DayIndex = 0
        return
    def GetLength(self):
        return sizeof(tagCMGetFestivalLoginAward)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''// AB 07 领取节日登陆奖励 //tagCMGetFestivalLoginAward:
                                Cmd:%s,
                                SubCmd:%s,
                                FestivalType:%d,
                                DayIndex:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.FestivalType,
                                self.DayIndex
                                )
        return DumpString
m_NAtagCMGetFestivalLoginAward=tagCMGetFestivalLoginAward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetFestivalLoginAward.Cmd,m_NAtagCMGetFestivalLoginAward.SubCmd))] = m_NAtagCMGetFestivalLoginAward
#------------------------------------------------------
# AB 11 开服活动奖励 #tagCMOpenServerCampaignAward
class  tagCMOpenServerCampaignAward(Structure):