From 9f22ca0294f38f6490679798e1c06baf28c87002 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 23 五月 2022 17:00:13 +0800
Subject: [PATCH] 9415 【BT】【后端】古神战场(增加被采集中的水晶资源NPCID同步)
---
ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py
index 6a91da3..0389a55 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py
+++ b/ServerPython/CoreServerGroup/GameServer/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