From bc0c9d89c0811bb32f98ba45dfaff6b10661c45a Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 12 九月 2024 17:01:46 +0800 Subject: [PATCH] 10261 【越南】【砍树】仙盟徽章,头像框,头像(动态),聊天气泡,聊天表情(增加头像、头像框) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerBillboard.py | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerBillboard.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerBillboard.py index 2925c43..04172db 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerBillboard.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerBillboard.py @@ -32,11 +32,10 @@ def GetBillboardOperateInfo(curPlayer): # 排行榜中所保存的运营商相关信息 - return curPlayer.GetFace() -# platform = curPlayer.GetAccID() -# if platform in ["tencent"]: -# return curPlayer.GetOperateInfo() -# return platform + platform = curPlayer.GetAccID() + if platform in ["tencent"]: + return curPlayer.GetOperateInfo() + return platform def GetBillboardJob(curPlayer): return curPlayer.GetJob() @@ -79,6 +78,8 @@ playerID = curPlayer.GetID() playerName = curPlayer.GetName() playerOpInfo = GetBillboardOperateInfo(curPlayer) + kwargs["value3"] = curPlayer.GetFace() + kwargs["value4"] = curPlayer.GetFacePic() if bType in ShareDefine.BTValue1_OfficialRankList: value1 = curPlayer.GetOfficialRank() GameServer_UpdateBillboard(bType, playerJob, playerID, playerName, playerOpInfo, @@ -121,6 +122,8 @@ playerID = curPlayer.GetID() playerName = CrossRealmPlayer.GetCrossPlayerName(curPlayer) playerOpInfo = GetBillboardOperateInfo(curPlayer) + kwargs["value3"] = curPlayer.GetFace() + kwargs["value4"] = curPlayer.GetFacePic() if bType in ShareDefine.BTValue1_OfficialRankList: value1 = curPlayer.GetOfficialRank() id2 = 0 -- Gitblit v1.8.0