From 7b83168dd103ded6d3e3214ec0584f0a6319c821 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期六, 18 一月 2025 23:43:24 +0800
Subject: [PATCH] 10331 【越南】【英语】【BT】【砍树】境界修改 - 增加拍卖任务事件
---
ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
index cf08de3..2c7442c 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
@@ -176,6 +176,8 @@
accID = curPlayer.GetAccID()
playerName = curPlayer.GetName()
job = curPlayer.GetJob()
+ face = curPlayer.GetFace()
+ facePic = curPlayer.GetFacePic()
realmLV = curPlayer.GetOfficialRank()
_, updScore, isRelationCrossAct = dataMsg
@@ -184,7 +186,7 @@
if isRelationCrossAct:
#同步跨服
playerInfo = {"playerID":playerID, "playerName":playerName, "accID":accID, "job":job, "realmLV":realmLV,
- "playerScore":updScore}
+ "playerScore":updScore, "face":face, "facePic":facePic}
SyncGubaoToCrossServer(curPlayer, playerInfo)
return
@@ -236,13 +238,15 @@
accID = playerInfo["accID"]
realmLV = playerInfo["realmLV"]
playerScore = playerInfo["playerScore"]
+ face = playerInfo.get("face", 0)
+ facePic = playerInfo.get("facePic", 0)
groupValue1 = zoneID
if playerScore >= personlLimit:
name2, type2, value1, value2 = accID, job, realmLV, 0
CrossBillboard.UpdCrossBillboard(ShareDefine.Def_CBT_GubaoScore, groupValue1, playerID, playerName,
- name2, type2, value1, value2, playerScore, autoSort=False)
+ name2, type2, value1, value2, playerScore, autoSort=False, value3=face, value4=facePic)
return
def OnCrossActIDChange(cfgID, zoneID, ipyData, state):
--
Gitblit v1.8.0