|  |  |  | 
|---|
|  |  |  | accID = curPlayer.GetAccID() | 
|---|
|  |  |  | playerName = curPlayer.GetName() | 
|---|
|  |  |  | job = curPlayer.GetJob() | 
|---|
|  |  |  | face = curPlayer.GetFace() | 
|---|
|  |  |  | facePic = curPlayer.GetFacePic() | 
|---|
|  |  |  | realmLV = curPlayer.GetOfficialRank() | 
|---|
|  |  |  | _, updScore, isRelationCrossAct = dataMsg | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | if isRelationCrossAct: | 
|---|
|  |  |  | #同步跨服 | 
|---|
|  |  |  | playerInfo = {"playerID":playerID, "playerName":playerName, "accID":accID, "job":job, "realmLV":realmLV, | 
|---|
|  |  |  | "playerScore":updScore} | 
|---|
|  |  |  | "playerScore":updScore, "face":face, "facePic":facePic} | 
|---|
|  |  |  | SyncHorsePetTrainToCrossServer(curPlayer, playerInfo) | 
|---|
|  |  |  | return | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | 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_HorsePetTrainScore, 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): | 
|---|