From 7e061666ff94ee05d08028ab0e4ac41afd3d4419 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 07 十一月 2018 11:50:00 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/SnxxServerCode

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

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index 503836b..72fa8a1 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
@@ -1568,4 +1568,25 @@
                 'AccID':curPlayer.GetAccID(), 'mwID':mwID, 'mwLV':mwLV}
     #发送封包
     SendEventPack("MagicWeaponActive", dataDict, curPlayer)
+    return
+
+## 玩家上线成就检查
+#  @return
+def DR_CheckOldPlayerSuccess(curPlayer):
+    dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(), 
+                'AccID':curPlayer.GetAccID()}
+    
+    #发送封包
+    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