| | |
| | | # 等级
|
| | | extraValueStr += GetTalkExtraValueStar(ShareDefine.Def_TalkExtraValue_Bit_LV) % player.GetLV()
|
| | | # 伴侣信息
|
| | | coupleName, bridePriceMaxID = "", 0
|
| | | socialPlayer = PyDataManager.GetPersonalSocialManager().GetSocialPlayer(playerID)
|
| | | if socialPlayer and socialPlayer.GetCoupleID():
|
| | | coupleName = socialPlayer.GetCoupleName()
|
| | | bridePriceMaxID = socialPlayer.GetBridePriceMaxID()
|
| | | extraValueStr = "%s|%s|%s" % (extraValueStr, coupleName, bridePriceMaxID)
|
| | | coupleName, coupleJob, bridePriceMaxID = "", 1, 0
|
| | | couple = PyDataManager.GetDBPyCoupleManager().GetCouple(playerID)
|
| | | if couple:
|
| | | coupleName = couple.GetCoupleName(playerID)
|
| | | coupleJob = couple.GetCoupleJob(playerID)
|
| | | bridePriceMaxID = couple.BridePriceMaxID
|
| | | extraValueStr = "%s|%s|%s|%s" % (extraValueStr, coupleName, coupleJob, bridePriceMaxID)
|
| | | return extraValueStr
|
| | |
|
| | |
|