From dbcdbf7daf12e2a94ea4d3f1c37c10f998deb8c6 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 24 十二月 2019 16:16:23 +0800 Subject: [PATCH] 8359 【主干】活跃兑换(快速完成增加可指定次数) 8346 【恺英】【后端】协助系统(增加每日协助活跃令上限及社交加成记录) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py index 2ae3d31..e2a4c82 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/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 -- Gitblit v1.8.0