From 8616eb28d77bbc52933d23935708c36def607380 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 28 三月 2019 17:41:09 +0800 Subject: [PATCH] 6373 【后端】【2.0】删除无用功能代码、封包、配置(转生系统) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py | 21 --------------------- 1 files changed, 0 insertions(+), 21 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py index 5c73c8d..770f6ea 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py @@ -90,7 +90,6 @@ # @change: "2014-12-01 19:10" ljd 增加领取合服活动登陆奖励事件记录 # @change: "2014-12-21 23:00" hxp 增加功能奖励物品 # @change: "2014-12-23 00:30" hxp 充值前/消费时流向信息扩展(增加各大功能信息) -# @change: "2015-01-27 22:30" hxp 增加转生等级变更流向 # @change: "2015-02-05 15:00" hxp 充值送礼流向扩展信息字典 # @change: "2015-02-27 21:00" hxp 增加大师等级升级流向; 重新开启技能学习流向 # @change: "2015-03-30 14:00" hxp 增加击杀NPC流向 @@ -464,26 +463,6 @@ #发送封包 SendEventPack("PlayerUpgrade", dataDict, curPlayer) - return - -## 玩家转生等级变更 -# @param curPlayer: 玩家实例 -# @param reincarnationLvBefore: 之前转生次数 -# @param playerLVExBefore: 之前转生等级 -# @param eventName: -# @return: None -def DR_PlayerLVExChange(curPlayer, reincarnationLvBefore, playerLVExBefore, eventName, addDataDict={}): - - dataDict = {'PlayerID':curPlayer.GetPlayerID(), 'PlayerName':curPlayer.GetPlayerName(), - 'AccID':curPlayer.GetAccID(), 'ReincarnationLv':curPlayer.GetReincarnationLv(), - 'PlayerLV':curPlayer.GetLV(), 'PlayerLVEx':curPlayer.GetLVEx(), - 'TotalExp':curPlayer.GetTotalExp(), 'ReincarnationLvBefore':reincarnationLvBefore, - 'PlayerLVExBefore':playerLVExBefore, "EventName":eventName} - - dataDict.update(addDataDict) - - #发送封包 - SendEventPack("PlayerLVExChange", dataDict, curPlayer) return ## 玩家大师等级变更 -- Gitblit v1.8.0