From c15c8f7eab589727de0195c40862e9afe08e890b Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 20 三月 2019 18:23:37 +0800 Subject: [PATCH] 6373 【后端】【2.0】删除无用功能代码、封包、配置(页游特惠活动相关) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py | 20 -------------------- 1 files changed, 0 insertions(+), 20 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py index 3097e88..1d0a975 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py @@ -1414,26 +1414,6 @@ SendEventPack("CollectNPCOK", dataDict, curPlayer) return -## 玩家领取充值特惠活动奖励 -# @param curPlayer: 玩家实例 -# @param actionID: 活动id -# @param actionNum: 活动编号 -# @param itemID: 物品id -# @param itemCnt: 物品数量 -# @param isPutIn: 是否放入 -# @param prizeIndex: 奖励中的第x种奖励 -# @return -def DR_PlayerTeHuiRechargePrize(curPlayer, actionID, actionNum, itemID, itemCnt, isPutIn, prizeIndex): - #MySql不识别 True False,改成1和0 - isPutIn = 1 if isPutIn else 0 - - dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(), - 'AccID':curPlayer.GetAccID(), 'ActionID':actionID, 'ActionNum':actionNum, - 'IsPutIn':isPutIn, "ItemID":itemID, "ItemCount":itemCnt, 'PrizeIndex':prizeIndex} - - SendEventPack("TeHuiRechargePrize", dataDict, curPlayer) - return - ## 领取投资回报 # @param curPlayer: 玩家实例 -- Gitblit v1.8.0