From 8a103d9814ff9a59ecdf5eaa051a39d6d1941f53 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 23 五月 2022 17:00:05 +0800 Subject: [PATCH] 9415 【BT】【后端】古神战场(增加周榜个人数据同步) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py index 6a91da3..0389a55 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py @@ -41257,6 +41257,9 @@ ("SubCmd", c_ubyte), ("BuyOpenCountToday", c_ubyte), # 今日已购买开启战场次数 ("HighScoreToday", c_int), # 今日最高积分 + ("EnterCountWeek", c_int), # 本周总参与次数 + ("BuyOpenCountWeek", c_int), # 本周总购买召集次数 + ("HighScoreTotalWeek", c_int), # 本周每日最高分累加总分 ] def __init__(self): @@ -41275,6 +41278,9 @@ self.SubCmd = 0x07 self.BuyOpenCountToday = 0 self.HighScoreToday = 0 + self.EnterCountWeek = 0 + self.BuyOpenCountWeek = 0 + self.HighScoreTotalWeek = 0 return def GetLength(self): @@ -41288,13 +41294,19 @@ Cmd:%s, SubCmd:%s, BuyOpenCountToday:%d, - HighScoreToday:%d + HighScoreToday:%d, + EnterCountWeek:%d, + BuyOpenCountWeek:%d, + HighScoreTotalWeek:%d '''\ %( self.Cmd, self.SubCmd, self.BuyOpenCountToday, - self.HighScoreToday + self.HighScoreToday, + self.EnterCountWeek, + self.BuyOpenCountWeek, + self.HighScoreTotalWeek ) return DumpString -- Gitblit v1.8.0