From b69fe56d5ebb784c4430cb5e86f460efafa1b30a Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 28 三月 2019 16:57:29 +0800
Subject: [PATCH] 6373 【后端】【2.0】删除无用功能代码、封包、配置(生产系统)
---
ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py | 120 ------------------------------------------------------------
1 files changed, 0 insertions(+), 120 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
index 35cc352..7a27e3e 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
@@ -7004,70 +7004,6 @@
#------------------------------------------------------
-#A3 21 使用特殊运营物品 #tagCMUseSpecialItem
-
-class tagCMUseSpecialItem(Structure):
- _pack_ = 1
- _fields_ = [
- ("Cmd", c_ubyte),
- ("SubCmd", c_ubyte),
- ("SpeicalItemType", c_ubyte), #特殊运营物品类型,0打折卡,1多选礼包
- ("ItemID", c_int), #物品ID
- ("ItemIndex", c_ubyte), #物品在背包中的索引位置
- ("Select", c_ubyte), #选择,只对多选礼包有用
- ]
-
- def __init__(self):
- self.Clear()
- self.Cmd = 0xA3
- self.SubCmd = 0x21
- 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 = 0xA3
- self.SubCmd = 0x21
- self.SpeicalItemType = 0
- self.ItemID = 0
- self.ItemIndex = 0
- self.Select = 0
- return
-
- def GetLength(self):
- return sizeof(tagCMUseSpecialItem)
-
- def GetBuffer(self):
- return string_at(addressof(self), self.GetLength())
-
- def OutputString(self):
- DumpString = '''//A3 21 使用特殊运营物品 //tagCMUseSpecialItem:
- Cmd:%s,
- SubCmd:%s,
- SpeicalItemType:%d,
- ItemID:%d,
- ItemIndex:%d,
- Select:%d
- '''\
- %(
- self.Cmd,
- self.SubCmd,
- self.SpeicalItemType,
- self.ItemID,
- self.ItemIndex,
- self.Select
- )
- return DumpString
-
-
-m_NAtagCMUseSpecialItem=tagCMUseSpecialItem()
-ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMUseSpecialItem.Cmd,m_NAtagCMUseSpecialItem.SubCmd))] = m_NAtagCMUseSpecialItem
-
-
-#------------------------------------------------------
# A3 2F 宗门试炼兑换 #tagCMTrialExchange
class tagCMTrialExchange(Structure):
@@ -12676,62 +12612,6 @@
m_NAtagCMDiceTake=tagCMDiceTake()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMDiceTake.Cmd,m_NAtagCMDiceTake.SubCmd))] = m_NAtagCMDiceTake
-
-
-#------------------------------------------------------
-# 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
#------------------------------------------------------
--
Gitblit v1.8.0