From 498a2f1f681cf7519532da0deff6ab02dd13564b Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期三, 09 一月 2019 11:37:03 +0800
Subject: [PATCH] 5768 【后端】【1.5】新增8-14天活动功能(制作成7日运营活动的模板)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 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 00674aa..118bec5 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
@@ -78,6 +78,7 @@
 import GameLogic_TrialTower
 import GameLogic_FamilyWar
 import PlayerBossReborn
+import PlayerWeekParty
 import Operate_EquipWash
 import PlayerTreasure
 import GameLogic_GodArea
@@ -692,6 +693,8 @@
     PlayerFreeGoods.OnLogin(curPlayer)
     # BOSS复活活动
     PlayerBossReborn.OnLogin(curPlayer)
+    # 周狂欢活动
+    PlayerWeekParty.OnLogin(curPlayer)
     # 仙界盛典活动
     PlayerFairyCeremony.OnLogin(curPlayer)
     # 分支下载奖励记录通知
@@ -5312,7 +5315,13 @@
     # 冰晶矿脉星级奖励
     elif rewardType == ChConfig.Def_RewardType_IceLodeStar:
         GameLogic_IceLode.GetIceLodeStarAward(curPlayer, dataEx)
-        
+    # 领取周狂欢活动奖励
+    elif rewardType == ChConfig.Def_RewardType_WeekPartyAct:
+        PlayerWeekParty.GetWeekPartyActionAward(curPlayer, dataEx, dataExStr)
+    # 领取周狂欢积分奖励
+    elif rewardType == ChConfig.Def_RewardType_WeekPartyPoint:
+        PlayerWeekParty.GetWeekPartyPointAward(curPlayer, dataEx, dataExStr)
+    
     return
     
     

--
Gitblit v1.8.0