From b3c6d36f5ae851f09a3c2e73494ff19956b06fb0 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 11 四月 2025 16:56:14 +0800 Subject: [PATCH] 10367 【越南】【英语】【BT】【砍树】仙盟攻城战-服务端(跨服仙盟支持;后台查询区服仙盟支持;活动时间流程支持;攻城战主活动功能完整流程:公示、分组、战备、战斗、榜单、竞猜、领奖等;) --- 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 6df29d6..4ed2bea 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -170,6 +170,7 @@ import PlayerActLoginNew import PlayerActBuyCountGift import PlayerActLunhuidian +import PlayerActFamilyGCZ import PlayerActYunshi import PlayerActTask @@ -1006,6 +1007,7 @@ PlayerCutTree.OnPlayerLogin(curPlayer) PlayerMineArea.OnPlayerLogin(curPlayer) PlayerGuaji.OnPlayerLogin(curPlayer) + PlayerActFamilyGCZ.OnPlayerLogin(curPlayer) # 上线查询一次充值订单 curPlayer.SendDBQueryRecharge() @@ -5706,6 +5708,9 @@ # 仙盟充值互助活动奖励 elif rewardType == ChConfig.Def_RewardType_FamilyCTGAssist: PlayerActFamilyCTGAssist.GetFamilyCTGAssistAward(curPlayer, dataEx, dataExStr) + # 仙盟攻城战活动奖励 + elif rewardType == ChConfig.Def_RewardType_FamilyGCZ: + PlayerActFamilyGCZ.GetFamilyGCZAward(curPlayer, dataEx, tick) # 天道树奖励 elif rewardType == ChConfig.Def_RewardType_TiandaoTree: PlayerXiangong.GetTiandaoTreeAward(curPlayer, dataEx) -- Gitblit v1.8.0