| | |
| | | for (int i = 0; i < netPack.PlayerList.Length; i++) |
| | | { |
| | | var player = netPack.PlayerList[i]; |
| | | string serverName = ServerListCenter.Instance.GetServerName((int)player.ServerID); |
| | | fightersInfo[player.PlayerID] = new CrossChampionshipPKPlayer() |
| | | { |
| | | PlayerID = player.PlayerID, |
| | | PlayerName = player.PlayerName, |
| | | PlayerName = StringUtility.Contact(Language.Get("Z2002", serverName), player.PlayerName), |
| | | FightPower = (long)player.FightPowerEx * (long)Constants.ExpPointValue + player.FightPower, |
| | | Job = player.Job, |
| | | LV = player.LV, |
| | | Face = player.Face, |
| | | FacePic = player.FacePic, |
| | | RealmLV = player.RealmLV, |
| | | ServerID = (int)player.ServerID, |
| | | }; |
| | | } |
| | | |
| | |
| | | public ushort RealmLV; |
| | | public uint Face; //基本脸型 |
| | | public uint FacePic; //头像框 |
| | | public int ServerID; |
| | | } |
| | | |
| | | public struct CrossChampionshipPKBattle |