| | |
| | | { |
| | | public readonly int rankType = 1; // 榜单类型 |
| | | public readonly int funcId = 27; // 功能Id |
| | | public readonly int DeployTroopsFuncId = 31; // 布阵功能ID |
| | | public readonly int BattleChangeTabFuncId = 32; // 战斗能切换页签功能ID |
| | | public readonly int recType = 308; // 演武场玩家挑战记录类型 308 |
| | | public readonly int ChallengeMoneyType = 53; |
| | | public readonly int NeedChallengeMoneyCnt = 1; |
| | |
| | | |
| | | public Dictionary<int, int[][]> GetArenaAwardDict(int functionOrder) |
| | | { |
| | | return functionOrder == 0 ? dailyRankRewards : seasonRankRewards; |
| | | return functionOrder == 0 ? seasonRankRewards : dailyRankRewards; |
| | | } |
| | | |
| | | public void SendViewGameRecPack() |
| | |
| | | { |
| | | CB209_tagCSArenaMatch pack = new CB209_tagCSArenaMatch(); |
| | | pack.IsRefresh = isRefresh ? (byte)1 : (byte)0; |
| | | GameNetSystem.Instance.SendInfo(pack); |
| | | } |
| | | |
| | | public void SendTurnFight(uint playerID) |
| | | { |
| | | CB410_tagCMTurnFight pack = new CB410_tagCMTurnFight(); |
| | | pack.MapID = 3; |
| | | pack.TagType = 1; |
| | | pack.TagID = playerID; |
| | | GameNetSystem.Instance.SendInfo(pack); |
| | | } |
| | | |