From cfd9fd059c78903926bf8f265d6eb52904ec3e77 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 13 八月 2024 11:14:51 +0800 Subject: [PATCH] 10241 【越南】【砍树】【主干】【港台】古宝养成(增加古宝养成活动;任务活动增加古宝寻宝任务类型,任务支持配置循环轮次;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py index de11f9c..d5fe7da 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -113,6 +113,7 @@ import PlayerActRechargePrize import PlayerActGarbageSorting import PlayerActXianXiaMJ +import PlayerActGubao import PlayerActGodGift import PlayerActFamilyCTGAssist import PlayerActRechargeRebateGold @@ -888,6 +889,8 @@ PlayerActGarbageSorting.OnPlayerLogin(curPlayer) # 仙匣秘境活动 PlayerActXianXiaMJ.OnPlayerLogin(curPlayer) + # 古宝养成活动 + PlayerActGubao.OnPlayerLogin(curPlayer) # 天帝礼包活动 PlayerActGodGift.OnPlayerLogin(curPlayer) # 多日连充活动 @@ -1076,6 +1079,8 @@ PlayerActBossTrial.OnMixFirstLogin(curPlayer) # 仙匣秘境 PlayerActXianXiaMJ.OnMixFirstLogin(curPlayer) + # 古宝养成 + PlayerActGubao.OnMixFirstLogin(curPlayer) # 重置玩家改名次数 #UpdatePlayerName.ResetChangeNameCnt(curPlayer) return -- Gitblit v1.8.0