|  |  |  | 
|---|
|  |  |  | PropDataDict = eval(PropData) | 
|---|
|  |  |  | fightPower = PropDataDict.get("FightPower", 0) | 
|---|
|  |  |  | familyID = PropDataDict.get("FamilyID", 0) | 
|---|
|  |  |  | PlayerFBHelpBattle.UpdateCheckInPlayerInfo(PlayerID, fightPower, familyID) | 
|---|
|  |  |  | playerName = PropDataDict.get("Name", "") | 
|---|
|  |  |  | PlayerFBHelpBattle.UpdateCheckInPlayerInfo(PlayerID, fightPower, familyID, playerName) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | #暂时关闭 | 
|---|
|  |  |  | #=========================================================================== | 
|---|
|  |  |  | 
|---|
|  |  |  | answerPack.LV = 1 | 
|---|
|  |  |  | answerPack.RealmLV = 1 | 
|---|
|  |  |  | answerPack.OnlineType = ChConfig.Def_Offline | 
|---|
|  |  |  | answerPack.ServerGroupID = 0 | 
|---|
|  |  |  | else: | 
|---|
|  |  |  | cacheDict = eval(curCache.GetPropData()) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | answerPack.LV = cacheDict["LV"] | 
|---|
|  |  |  | answerPack.RealmLV = cacheDict["RealmLV"] | 
|---|
|  |  |  | answerPack.OnlineType = ChConfig.Def_Offline | 
|---|
|  |  |  | answerPack.ServerGroupID = cacheDict.get("ServerGroupID", 0) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | else: | 
|---|
|  |  |  | answerPack.PlayerID = clientPack.PlayerID | 
|---|
|  |  |  | 
|---|
|  |  |  | answerPack.RealmLV = tagPlayer.GetOfficialRank() | 
|---|
|  |  |  | answerPack.OnlineType = ChConfig.Def_Online | 
|---|
|  |  |  | answerPack.IsInTeam = tagPlayer.GetTeamID() > 0 | 
|---|
|  |  |  | answerPack.ServerGroupID = PlayerControl.GetPlayerServerGroupID(tagPlayer) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | curPlayer = GameWorld.GetPlayerManager().GetPlayerByIndex(index) | 
|---|
|  |  |  | NetPackCommon.SendFakePack(curPlayer, answerPack) | 
|---|