From e4fc3ac2dea951d1345acb647cf9bc36142951e9 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 12 二月 2026 11:41:47 +0800
Subject: [PATCH] 16 卡牌服务端(删除不需要的旧活动:成长必买、限时特惠、限时礼包、每日礼包、限时抢购、极品白拿、运势活动、天帝礼包、转盘、许愿池、幸运鉴宝;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 44 +-------------------------------------------
1 files changed, 1 insertions(+), 43 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 3731bd0..2764be9 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
@@ -42,31 +42,21 @@
import PlayerGoldInvest
import PlayerActivity
import FBCommon
-import PlayerWishingWell
import PlayerSuccess
-import PlayerFreeGoods
import GameFuncComm
import PlayerFamilyTaofa
import PlayerTreasure
import IpyGameDataPY
import EventReport
import PassiveBuffEffMng
-import PlayerFlashSale
-import PlayerFlashGiftbag
-import PlayerDailyGiftbag
import PlayerActBuyOne
-import PlayerActGrowupBuy
import PlayerActCollectWords
import PlayerActTotalRecharge
import PlayerActLianqi
-import PlayerActGodGift
import PlayerActFamilyCTGAssist
import PlayerActManyDayRecharge
import PlayerActSingleRecharge
-import PlayerSpringSale
-import PlayerLuckyTreasure
import PlayerFuncSysPrivilege
-import PlayerActTurntable
import OpenServerActivity
import ChNetSendPack
import PlayerArena
@@ -94,7 +84,6 @@
import PlayerActBuyCountGift
import PlayerActLunhuidian
import PlayerActFamilyGCZ
-import PlayerActYunshi
import PlayerActTask
import PlayerMail
import DBDataMgr
@@ -537,16 +526,6 @@
#NotifyPlayerBasePoint(curPlayer)
#累计充值
PlayerActTotalRecharge.OnPlayerLogin(curPlayer)
- #成长必买
- PlayerActGrowupBuy.OnPlayerLogin(curPlayer)
- #限时特惠
- PlayerSpringSale.OnPlayerLogin(curPlayer)
- #限时礼包
- PlayerFlashGiftbag.OnPlayerLogin(curPlayer)
- #每日礼包
- PlayerDailyGiftbag.OnPlayerLogin(curPlayer)
- #限时抢购
- PlayerFlashSale.OnPlayerLogin(curPlayer)
#买一送多活动
PlayerActBuyOne.OnPlayerLogin(curPlayer)
#仙盟充值互助
@@ -558,36 +537,24 @@
FunctionNPCCommon.ShopItemOnLogin(curPlayer)
# 通知设置的被动功法
#PassiveBuffEffMng.OnLoginGFPassive(curPlayer)
- # 极品白拿
- PlayerFreeGoods.OnLogin(curPlayer)
# 购买次数礼包活动
PlayerActBuyCountGift.OnPlayerLogin(curPlayer)
# 任务活动
PlayerActTask.OnPlayerLogin(curPlayer)
- # 运势活动
- PlayerActYunshi.OnPlayerLogin(curPlayer)
# 登录活动
PlayerActLoginNew.OnPlayerLogin(curPlayer)
# 炼器活动
PlayerActLianqi.OnPlayerLogin(curPlayer)
- # 天帝礼包活动
- PlayerActGodGift.OnPlayerLogin(curPlayer)
# 多日连充活动
PlayerActManyDayRecharge.OnPlayerLogin(curPlayer)
# 单笔累充活动
PlayerActSingleRecharge.OnPlayerLogin(curPlayer)
- # 转盘活动
- PlayerActTurntable.OnPlayerLogin(curPlayer)
# 分支下载奖励记录通知
SyncPackDownloadAward(curPlayer)
# 登录触发功能开启(老号处理)
GameFuncComm.DoFuncOpenLogic(curPlayer)
# 神兽
PlayerDogz.OnPlayerLogin(curPlayer)
- # 许愿池
- PlayerWishingWell.OnLogin(curPlayer)
- #幸运鉴宝
- PlayerLuckyTreasure.OnLogin(curPlayer)
# 小助手
SyncLittleHelper(curPlayer)
PlayerFB.OnLogin(curPlayer)
@@ -3386,16 +3353,10 @@
elif rewardType == ChConfig.Def_RewardType_LunhuidianAward:
PlayerActLunhuidian.GetLunhuidianAward(curPlayer, dataEx, dataExStr)
-
- # 每日免费直购礼包
- elif rewardType == ChConfig.Def_RewardType_DayFreeGoldGift:
- PlayerDailyGiftbag.OnGetDailyFreeGiftbag(curPlayer)
+
# 首充礼包奖励
elif rewardType == ChConfig.Def_RewardType_FirstCharge:
PlayerGoldGift.GetPlayerFirstCharge(curPlayer, dataEx, dataExStr)
- # 领取极品白拿
- elif rewardType == ChConfig.Def_RewardType_FreeGoods:
- PlayerFreeGoods.OnGetFreeGoods(curPlayer, dataEx)
# 领取累计充值奖励
elif rewardType == ChConfig.Def_RewardType_TotalRecharge:
PlayerActTotalRecharge.OnGetTotalRechargeAward(curPlayer, dataEx, dataExStr)
@@ -3405,9 +3366,6 @@
# 领取单笔累充领取
elif rewardType == ChConfig.Def_RewardType_SingleRecharge:
PlayerActSingleRecharge.OnGetSingleRechargeAward(curPlayer, dataEx, dataExStr)
- # 领取许愿池奖励
- elif rewardType == ChConfig.Def_RewardType_WishingWell:
- PlayerWishingWell.DoGetWishingAward(curPlayer)
# 领取登录活动奖励
elif rewardType == ChConfig.Def_RewardType_ActLoginAwardNew:
PlayerActLoginNew.OnGetActLoginAward(curPlayer, dataEx, dataExStr)
--
Gitblit v1.8.0