From 735b28f37122bc5bb87c52806df1f5299085c89b Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 14 八月 2024 15:58:16 +0800 Subject: [PATCH] 10238 【越南】【砍树】【主干】【港台】骑宠养成(增加骑宠养成活动;任务活动增加骑宠活动相关任务类型;商城增加可配置不重置限购次数;增加境界培养卡道具效果;增加法器生命、攻击、防御百分比属性;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py index 7555dab..d315b2f 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py @@ -83,6 +83,7 @@ import PlayerActGarbageSorting import PlayerActXianXiaMJ import PlayerActGubao +import PlayerActHorsePetTrain import PlayerActGodGift import PlayerActFamilyCTGAssist import PlayerActRechargeRebateGold @@ -1424,6 +1425,9 @@ elif actionName == ShareDefine.OperationActionName_Gubao: PlayerActGubao.RefreshGubaoActionInfo(actNum) + elif actionName == ShareDefine.OperationActionName_HorsePetTrain: + PlayerActHorsePetTrain.RefreshHorsePetTrainActionInfo(actNum) + elif actionName == ShareDefine.OperationActionName_GodGift: PlayerActGodGift.RefreshGodGiftActionInfo(actNum) @@ -1546,6 +1550,9 @@ elif actionName == ShareDefine.CrossActName_Gubao: PlayerActGubao.RefreshCrossActGubaoInfo() + elif actionName == ShareDefine.CrossActName_HorsePetTrain: + PlayerActHorsePetTrain.RefreshCrossActHorsePetTrainInfo() + return if key == ShareDefine.Def_Notify_WorldKey_CrossZoneName: -- Gitblit v1.8.0