From 4f48659ed51c0e087e55da91ec76cbcdd7a87486 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 15 十一月 2018 17:40:58 +0800
Subject: [PATCH] 4788 【后端】【1.3】洗炼必增由消耗仙玉改为消耗道具

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index ef70914..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(), 
@@ -1581,4 +1578,15 @@
     
     #发送封包
     SendEventPack("CheckOldPlayerSuccess", dataDict, curPlayer)
+    return
+
+## 玩家境界升级
+#  @return
+def DR_RealmLVUp(curPlayer, realmlv, realmPoint, needRealmPoint):
+    dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(), 
+                'AccID':curPlayer.GetAccID(), 'realmlv':realmlv, 'curRealmPoint':realmPoint, 'costRealmPoint':needRealmPoint,
+                'playerlv':curPlayer.GetLV(), 'power':curPlayer.GetFightPower()}
+    
+    #发送封包
+    SendEventPack("RealmLVUp", dataDict, curPlayer)
     return
\ No newline at end of file

--
Gitblit v1.8.0