From 35d98e9c630fd4408561c8c54b4c09193bb9ce9e Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期五, 20 三月 2026 14:57:32 +0800 Subject: [PATCH] 0312 修改服务端补主线进度通知 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index b06ccd3..d1f14b7 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1361,7 +1361,8 @@ SkillTagAffect_DamShield, # 承伤盾目标优先 8 SkillTagAffect_Bleeding, # 仅流血目标 9 SkillTagAffect_HPPerLowest, # 血量百分比最低 10 -) = range(11) +SkillTagAffect_IncontrolledPriority, # 受控目标优先 11 +) = range(12) #技能施法目标 Def_UseSkillAim_Type = 3 @@ -3306,6 +3307,7 @@ Def_PDict_ShareGameAwardState = "ShareGameAwardState" # 每日分享游戏领奖记录 Def_PDict_GoodGameAwardState = "GoodGameAwardState" # 游戏好评领奖记录 Def_PDict_LikeGameAwardState = "LikeGameAwardState" # 游戏点赞领奖记录 +Def_PDict_DeleteTestRebate = "DeleteTestRebate" # 删档测试返利状态,0-该角色未触发,1-该角色已处理,仅做处理标记,只会发给该平台账号第一个请求的角色 Def_PDict_RechargeDayAward = "RechargeDayAward" # 累充每日奖励 Def_PDict_ADCnt = "ADCnt_%s" # 今日已领取广告奖励次数,参数(广告ID) Def_PDict_EquipViewCacheState = "EquipViewCacheState" # 本次上线是否同步过装备缓存 @@ -3458,6 +3460,7 @@ # 称号 Def_PDict_TitleState = "TitleState_%s" # 称号状态,参数(key编号) Def_PDict_TitleEndTime = "TitleEndTime_%s" # 称号到期时间戳,0为永久,参数(称号ID) +Def_PDict_TitleGoldRewardTime = "TitleGRewardTime_%s" # 称号每日俸禄上次发放时间戳,参数(称号ID) Def_PDict_TitleStar = "TitleStar_%s" # 称号星级,参数(称号ID) # 形象 @@ -3967,7 +3970,7 @@ SkillEff_UseSkillHarmSelf = 7008 # 释放技能时自残(先扣血) SkillEff_SkillUseCntLimit = 7009 # 限制技能最多触发次数 SkillEff_UseSkillStealBuff = 7010 # 释放技能前偷取buff -SkillEff_ReviveNoUse = 7011 # 没有复活目标时释放其他技能 +SkillEff_NoTagUse = 7011 # 没有技能设定的目标时释放其他技能 SkillEff_LearnSkillEx = 7012 # 额外学习技能(用于拆分完全独立的技能,视为已学习) ( @@ -4923,3 +4926,12 @@ CoinType_ExchangePayCoin, # 代表转换 6 CoinType_PayCoin, # 代币充值 7 ) = range(8) + +# 物品产出来源特殊标记 +( +ItemSrcSign_Default, # 无 +ItemSrcSign_GubaoEff, # 古宝效果额外产出 1 +ItemSrcSign_BeautyEff, # 红颜效果额外产出 2 +ItemSrcSign_TitleEff, # 称号效果额外产出 3 +ItemSrcSign_HeroSkinChange, # 武将时装转化 4 +) = range(1 + 4) -- Gitblit v1.8.0