From a0948adde92689bac0f0566cc257fd848fdfa184 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 13 十一月 2018 10:48:46 +0800
Subject: [PATCH] 4759 【1.2】【后端】开服期间定制运营活动限制几天开出配置
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py | 11 +++--------
1 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index 07fd85f..72fa8a1 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
@@ -1571,9 +1571,6 @@
return
## 玩家上线成就检查
-# @param tagObjType: 攻击方类型
-# @param tagObj: 攻击方ID
-# @param mapID: 死亡玩家所在地图ID
# @return
def DR_CheckOldPlayerSuccess(curPlayer):
dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(),
@@ -1584,13 +1581,11 @@
return
## 玩家境界升级
-# @param tagObjType: 攻击方类型
-# @param tagObj: 攻击方ID
-# @param mapID: 死亡玩家所在地图ID
# @return
-def DR_RealmLVUp(curPlayer, realmlv, realmPoint):
+def DR_RealmLVUp(curPlayer, realmlv, realmPoint, needRealmPoint):
dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(),
- 'AccID':curPlayer.GetAccID(), 'realmlv':realmlv, 'realmPoint':realmPoint}
+ 'AccID':curPlayer.GetAccID(), 'realmlv':realmlv, 'curRealmPoint':realmPoint, 'costRealmPoint':needRealmPoint,
+ 'playerlv':curPlayer.GetLV(), 'power':curPlayer.GetFightPower()}
#发送封包
SendEventPack("RealmLVUp", dataDict, curPlayer)
--
Gitblit v1.8.0