hxp
2019-12-27 68e048256ca3e40cbc6e73cfd0937663cd41d63c
ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
@@ -14013,6 +14013,7 @@
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("FinishCount", c_ubyte),    #完成次数
                  ]
    def __init__(self):
@@ -14029,6 +14030,7 @@
    def Clear(self):
        self.Cmd = 0xB0
        self.SubCmd = 0x28
        self.FinishCount = 0
        return
    def GetLength(self):
@@ -14040,11 +14042,13 @@
    def OutputString(self):
        DumpString = '''// B0 28 活跃放置快速完成 //tagCMActivityPlaceQuickFinish:
                                Cmd:%s,
                                SubCmd:%s
                                SubCmd:%s,
                                FinishCount:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd
                                self.SubCmd,
                                self.FinishCount
                                )
        return DumpString