From 33d7639758f71890d81d37cc17a787c0214a98ed Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 18 十月 2024 14:28:42 +0800 Subject: [PATCH] 10287 【英文】1折活动 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 60 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py index 4351f9c..aed54dc 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py @@ -17364,6 +17364,66 @@ #------------------------------------------------------ +# AA 02 推金币 #tagCMTuijinbi + +class tagCMTuijinbi(Structure): + _pack_ = 1 + _fields_ = [ + ("Cmd", c_ubyte), + ("SubCmd", c_ubyte), + ("OpType", c_ubyte), # 操作类型: 0-抽奖;1-获得金币;2-激活至尊卡 + ("Value1", c_int), # 类型1时为货币类型 + ("Value2", c_int), # 类型1时为货币数值 + ] + + def __init__(self): + self.Clear() + self.Cmd = 0xAA + self.SubCmd = 0x02 + 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 = 0xAA + self.SubCmd = 0x02 + self.OpType = 0 + self.Value1 = 0 + self.Value2 = 0 + return + + def GetLength(self): + return sizeof(tagCMTuijinbi) + + def GetBuffer(self): + return string_at(addressof(self), self.GetLength()) + + def OutputString(self): + DumpString = '''// AA 02 推金币 //tagCMTuijinbi: + Cmd:%s, + SubCmd:%s, + OpType:%d, + Value1:%d, + Value2:%d + '''\ + %( + self.Cmd, + self.SubCmd, + self.OpType, + self.Value1, + self.Value2 + ) + return DumpString + + +m_NAtagCMTuijinbi=tagCMTuijinbi() +ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMTuijinbi.Cmd,m_NAtagCMTuijinbi.SubCmd))] = m_NAtagCMTuijinbi + + +#------------------------------------------------------ # AB 0B 购买天神经验 #tagCMBuySkyGodExp class tagCMBuySkyGodExp(Structure): -- Gitblit v1.8.0