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/ChPlayer.py | 6 ++++++ 1 files changed, 6 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 793c371..ffa8e74 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -114,6 +114,7 @@ import PlayerActGarbageSorting import PlayerActXianXiaMJ import PlayerActGubao +import PlayerActHorsePetTrain import PlayerActGodGift import PlayerActFamilyCTGAssist import PlayerActRechargeRebateGold @@ -622,6 +623,7 @@ PlayerControl.SyncOnLineTimeTotal(curPlayer) #PlayerControl.SyncOnLineTimeLastOpenPack(curPlayer, IPY_GameWorld.rptItem) + PlayerControl.SyncTrainRealmLV(curPlayer) PlayerGodWeapon.OnLogin(curPlayer) PlayerPrestigeSys.OnLogin(curPlayer) #DataRecordPack.DR_PlayerLogin(curPlayer) @@ -891,6 +893,8 @@ PlayerActXianXiaMJ.OnPlayerLogin(curPlayer) # 古宝养成活动 PlayerActGubao.OnPlayerLogin(curPlayer) + # 骑宠养成活动 + PlayerActHorsePetTrain.OnPlayerLogin(curPlayer) # 天帝礼包活动 PlayerActGodGift.OnPlayerLogin(curPlayer) # 多日连充活动 @@ -1083,6 +1087,8 @@ PlayerActXianXiaMJ.OnMixFirstLogin(curPlayer) # 古宝养成 PlayerActGubao.OnMixFirstLogin(curPlayer) + # 骑宠养成 + PlayerActHorsePetTrain.OnMixFirstLogin(curPlayer) # 重置玩家改名次数 #UpdatePlayerName.ResetChangeNameCnt(curPlayer) return -- Gitblit v1.8.0