From edf5674b9d6a4812b1a36b32e0e1bfd5b0cb968e Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 15 十月 2025 09:19:42 +0800
Subject: [PATCH] 263 【主界面】头像系统(内政-幻境阁系统)-服务端(形象、头像、头像框、气泡、称号)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index a51cd79..4ddee20 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -215,7 +215,8 @@
Def_CalcAttr_HeroBook, # 武将图鉴 2
Def_CalcAttr_Realm, # 官职 3
Def_CalcAttr_Gubao, # 古宝 4
-) = range(5)
+Def_CalcAttr_HJG, # 幻境阁 5
+) = range(6)
CalcAttrName = {
Def_CalcAttr_LV:"主公等级",
@@ -223,6 +224,7 @@
Def_CalcAttr_HeroBook:"武将图鉴",
Def_CalcAttr_Realm:"官职",
Def_CalcAttr_Gubao:"古宝",
+ Def_CalcAttr_HJG:"幻境阁",
}
##-----------------------------------------------------------------------------------------------
@@ -3584,6 +3586,16 @@
Def_PDict_WishingWellItem = "WishingWellItem_%s_%s" # 物品ID,是否极品、是否绑定信息 参数(类型,物品数据)
Def_PDict_WishingWellItemCnt = "WishingWellItemCnt_%s_%s" # 物品数量记录 参数(类型,物品数据)
+# 称号
+Def_PDict_TitleState = "TitleState_%s" # 称号状态,参数(key编号)
+Def_PDict_TitleEndTime = "TitleEndTime_%s" # 称号到期时间戳,0为永久,参数(称号ID)
+Def_PDict_TitleStar = "TitleStar_%s" # 称号星级,参数(称号ID)
+
+# 形象
+Def_PDict_ModelState = "ModelState_%s" # 形象状态,参数(key编号)
+Def_PDict_ModelEndTime = "ModelEndTime_%s" # 形象到期时间戳,0为永久,参数(形象ID)
+Def_PDict_ModelStar = "ModelStar_%s" # 形象星级,参数(形象ID)
+
#头像
Def_PDict_FaceState = "FaceState_%s" # 头像状态,参数(key编号)
Def_PDict_FaceEndTime = "FaceEndTime_%s" # 头像到期时间戳,0为永久,参数(头像ID)
@@ -3593,7 +3605,7 @@
Def_PDict_FacePicStar = "FacePicStar_%s" # 头像框星级,参数(头像框ID)
#聊天气泡
-Def_PDict_ChatBubbleBoxState = "ChatBubbleBoxState_%s" # 聊天气泡状态, 参数(key编号)
+Def_PDict_ChatBoxState = "ChatBoxState_%s" # 聊天气泡状态, 参数(key编号)
Def_PDict_ChatBoxEndTime = "ChatBoxEndTime_%s" # 到期时间戳,0为永久,参数(气泡ID)
Def_PDict_ChatBoxStar = "ChatBoxStar_%s" # 星级,参数(气泡ID)
Def_PDict_EmojiPackState = "EmojiPackState_%s" # 表情包状态,参数(key编号)
@@ -3771,9 +3783,6 @@
#骑宠觉醒
Def_PDict_HorsePetSkinData = "HorsePetSkinData%d_%s" #觉醒等级*100+外观索引 参数(类型,关联ID) 1-坐骑 2-灵宠
Def_PDict_HorsePetSkinExp = "HorsePetSkinExp%d_%s" #经验 参数(类型,关联ID) 1-坐骑 2-灵宠
-
-# 称号
-Def_PDict_TitleStar = "TitleStar_%s" # 称号星级,参数(称号ID)
# 符印
Def_PDict_Rune_HoleOpenState = "Rune_HoleOpenState" # 符印解锁状态
--
Gitblit v1.8.0