From 31aa783270d35488457e388a29dd397bd1832c6f Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 11 九月 2025 10:48:42 +0800 Subject: [PATCH] 121 【武将】武将系统-服务端(激活图鉴奖励通知弹框;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py | 12 ++++++++++-- 1 files changed, 10 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 62b85f1..369a2ec 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py @@ -38000,6 +38000,8 @@ ("BookInitState", c_ubyte), # 图鉴激活状态:0-未激活;1-可激活;2-已激活 ("BookStarLV", c_ushort), # 图鉴星级等级 ("BookBreakLV", c_ushort), # 图鉴突破等级 + ("BookStarLVH", c_ushort), # 图鉴星级历史最高等级 + ("BookBreakLVH", c_ushort), # 图鉴突破历史最高等级 ] def __init__(self): @@ -38017,6 +38019,8 @@ self.BookInitState = 0 self.BookStarLV = 0 self.BookBreakLV = 0 + self.BookStarLVH = 0 + self.BookBreakLVH = 0 return def GetLength(self): @@ -38031,14 +38035,18 @@ SkinState:%d, BookInitState:%d, BookStarLV:%d, - BookBreakLV:%d + BookBreakLV:%d, + BookStarLVH:%d, + BookBreakLVH:%d '''\ %( self.HeroID, self.SkinState, self.BookInitState, self.BookStarLV, - self.BookBreakLV + self.BookBreakLV, + self.BookStarLVH, + self.BookBreakLVH ) return DumpString -- Gitblit v1.8.0