From 935c7a30007928b9830c41b026788e9f698b1b66 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 27 十月 2025 11:46:20 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(优化战斗请求CD:主线、副本独立CD,增加全服公共CD;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 38 ++++++++++++++++---------------------- 1 files changed, 16 insertions(+), 22 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 50c71a6..6af4046 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -675,6 +675,7 @@ Def_Effect_RecycleItemMoney = 277 #回收物品转化为货币; A值-直接给货币物品ID;B值-货币数量 Def_Effect_FamilyEmblem = 278 #激活仙盟徽章; A值-徽章ID; Def_Effect_HeroSkin = 279 #激活武将皮肤; A值-武将ID;B值-皮肤索引 +Def_Effect_FamilyTaofaCnt = 280 #增加公会讨伐次数; A值-讨伐次数 #----以下未使用或代码依然存在的--- Def_Effect_ItemGiveGongXun = 1920 #使用道具给予功勋 Def_Effect_ItemGiveRuneJH = 1925 #使用道具给予符印精华 @@ -3374,9 +3375,6 @@ Def_PDict_IsAddReviveTired = "IsAddReviveTired" # 死亡是否增加复活疲劳 -Def_PDict_DownloadAwardState = "DownloadAwardState" # 分包包下载奖励状态 0-未领 >0-已领奖励编号 -Def_PDict_DownloadPatchAward = "DownloadPatchAward" # 更新包下载奖励状态 0-未领 >0-已领奖励编号 - Def_PDict_ChestsOpenCount = "ChestsOpenCount_%s" # 宝箱已开启次数, 参数(宝箱ID), 只有有开启次数额外奖励的才会记录 Def_PDict_DropCountToday = "DropCountToday_%s" # 今日物品已掉落次数,参数(物品ID) @@ -3427,29 +3425,25 @@ Def_Player_Dict_TrialTower_PassLV = "TrialTower_PassLV" # 试炼之塔通关层数 Def_Player_Dict_TrialTower_LastDayPassLV = "Tower_LastDayPassLV" # 试炼之塔昨日通关层数 -#仙盟打坐 -Def_Player_Dict_FamilySitExpRound = "FamilySitExpRound" # 已给经验轮次 -Def_Player_Dict_FamilySitTotalExp = "FamilySitTotalExp" # 获得的总经验 -Def_Player_Dict_FamilySitTotalExpPoint = "FamilySitTotalExpPoint" # 获得的总经验点 +#公会讨伐 +Def_Player_Dict_FamilyTaofaCnt = "FamilyTaofaCnt" # 已讨伐次数 +Def_Player_Dict_FamilyTaofaItemAddCnt = "FamilyTaofaItemAddCnt" # 道具增加讨伐次数 +Def_Player_Dict_FamilyTaofaBuZhenState = "FamilyTaofaBuZhenState" # 是否已布阵 +Def_Player_Dict_FamilyTaofaAnger = "FamilyTaofaAnger" # 当前怒气 +Def_Player_Dict_FamilyTaofaBoxTotalGetCnt = "FamilyTaofaBoxTotalGetCnt" # 累计已领取宝箱奖励数 +Def_Player_Dict_FamilyTaofaBoxUnGetCnt = "FamilyTaofaBoxUnGetCnt" # 当前未领取的宝箱奖励数 +Def_Player_Dict_FamilyTaofaBoxLastTime = "FamilyTaofaBoxLastTime" # 上一次统计未领取宝箱时间戳,超过该时间戳的宝箱才可以再增加未领取 +Def_Player_Dict_FamilyTaofaBoxContribCnt = "FamilyTaofaBoxContribCnt" # 累计贡献的宝箱奖励数 +Def_Player_Dict_FamilyTaofaBoxHurt = "FamilyTaofaBoxHurt" # 宝箱奖励计算累计伤害,求余亿部分 +Def_Player_Dict_FamilyTaofaBoxHurtEx = "FamilyTaofaBoxHurtEx" # 宝箱奖励计算累计伤害,整除亿部分 +Def_Player_Dict_FamilyTaofaBoxHurtHis = "FamilyTaofaBoxHurtHis" # 历史最高累计伤害,求余亿部分 +Def_Player_Dict_FamilyTaofaBoxHurtHisEx = "FamilyTaofaBoxHurtHisEx" # 历史最高累计伤害,整除亿部分 #虚拟背包物品数据 Def_PDict_VPackItem = "VPackItem_%s_%s" # 虚拟背包物品数据, 参数(背包类型, 位置索引) #物品个数 Def_PDict_ItemCount = "ItemCount_%s" # 存储不放在背包的物品个数, 参数(物品ID) - -#一次性最大充值 -Def_Player_RechargeOnce_Coin = "RechargeOnce_Coin" - -#悬赏任务 -Def_Player_Dict_ArrestTaskStar = "ArrestTaskStar" # 悬赏任务星级 -Def_Player_Dict_ArrestTaskData = "ArrestTaskData_%s" # 悬赏任务数据,参数索引 -Def_Player_Dict_ArrestTaskAwardRecord = "ArrestTaskAwardRecord" # 悬赏任务积分奖励领取记录 -Def_Player_Dict_ArrestTaskFinishCnt = "ArrestTaskFinishCnt" # 悬赏任务今日完成个数 - -#封魔坛 -Def_Player_Dict_FMTDouble = "FMTDouble" # 封魔坛是否双倍 -Def_Player_Dict_FMTOldDouble = "FMTOldDouble" # 封魔坛是否曾经可以双倍 #极品白拿 Def_PDict_FreeGoodsOpenTime = "FreeGoodsOpenTime" #极品白拿开启时间 @@ -4877,7 +4871,7 @@ Def_RewardType_Activity, # 活跃度奖励 0 Def_RewardType_DailyTask, # 每日任务奖励 1 Def_RewardType_LLMJLVUp, # 历练秘笈升级 2 -Def_RewardType_XMZZWinCnt, # 仙魔之争胜利场数奖励 3 +Def_RewardType_FamilyTaofaBox, # 公会讨伐领取宝箱奖励 3 Def_RewardType_FamilyDayAward, # 仙盟每日福利奖励 4 Def_RewardType_LVAward, # 玩家等级奖励5 Def_RewardType_XBXZ, # 仙宝寻主奖励6 @@ -4889,7 +4883,7 @@ Def_RewardType_BossReborn, # BOSS复活12 Def_RewardType_FCRecharge, # 仙界盛典充值大礼13 Def_RewardType_FCParty, # 仙界盛典全民来嗨14 -Def_RewardType_DownLoad, # 分包下载奖励15 +Def_RewardType_15, # 分包下载奖励15 Def_RewardType_WishingWell, # 许愿池奖励16 Def_RewardType_OpenFunc, # 功能开启奖励17 Def_RewardType_TotalRecharge, # 累计充值奖励18 -- Gitblit v1.8.0