ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
@@ -13545,6 +13545,7 @@ _fields_ = [ ("Cmd", c_ubyte), ("SubCmd", c_ubyte), ("ActNum", c_ubyte), #活动编号 ("GoodsID", c_int), # 抢购商品标识 ("State", c_ubyte), # 1-预约 0-取消 ] @@ -13563,6 +13564,7 @@ def Clear(self): self.Cmd = 0xAA self.SubCmd = 0x05 self.ActNum = 0 self.GoodsID = 0 self.State = 0 return @@ -13577,12 +13579,14 @@ DumpString = '''// AA 05 限时抢购预约 //tagCMFlashSaleAppointment: Cmd:%s, SubCmd:%s, ActNum:%d, GoodsID:%d, State:%d '''\ %( self.Cmd, self.SubCmd, self.ActNum, self.GoodsID, self.State )