From c24be2a64b5db696a92b6afea349c1766f2e699b Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 20 三月 2019 14:49:51 +0800
Subject: [PATCH] 3085 【BUG】【2.0】拍卖,拍下物品没有广播
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py | 45 +++++++++++++++++++--------------------------
1 files changed, 19 insertions(+), 26 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index c6ad77e..3097e88 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
@@ -551,18 +551,6 @@
SendEventPack("LVAward", dataDict, curPlayer)
return
-##合服登陆奖励
-def DR_MixLoginDayAward(curPlayer, getState):
- dataDict = {'PlayerID':curPlayer.GetPlayerID(),
- 'PlayerName':curPlayer.GetPlayerName(),
- 'AccID':curPlayer.GetAccID(),
- "rewardState":getState
- }
-
- SendEventPack("MixLoginDayAward", dataDict, curPlayer)
- return
-
-
## 使用新手媒体卡
# @param curPlayer: 玩家实例
# @param cardStr: 卡号
@@ -606,18 +594,6 @@
dataDict["PlayerName"] = curPlayer.GetPlayerName()
SendEventPack("OpenServerAward", dataDict, curPlayer)
- return
-
-## 合服活动奖励领取情况
-# @param curPlayer: 玩家实例
-# @param dataDict: 记录信息字典
-# @return: None
-def DR_MixServerAward(curPlayer, dataDict):
- dataDict["PlayerID"] = curPlayer.GetPlayerID()
- dataDict["AccID"] = curPlayer.GetAccID()
- dataDict["PlayerName"] = curPlayer.GetPlayerName()
-
- SendEventPack("MixServerAward", dataDict, curPlayer)
return
## GM执行命令操作
@@ -1585,9 +1561,9 @@
## 玩家境界升级
# @return
-def DR_RealmLVUp(curPlayer, realmlv, realmPoint, needRealmPoint):
+def DR_RealmLVUp(curPlayer, realmlv):
dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(),
- 'AccID':curPlayer.GetAccID(), 'realmlv':realmlv, 'curRealmPoint':realmPoint, 'costRealmPoint':needRealmPoint,
+ 'AccID':curPlayer.GetAccID(), 'realmlv':realmlv,
'playerlv':curPlayer.GetLV(), 'power':curPlayer.GetFightPower()}
#发送封包
@@ -1619,3 +1595,20 @@
#发送封包
SendEventPack("FightPowerChangeInfo", dataDict, curPlayer)
return
+
+## 玩家周狂欢(七天巡礼)
+# @return
+def DR_WeekPartyPoint(curPlayer, dayIndex, point):
+ dataDict = {'PlayerID':curPlayer.GetPlayerID(),
+ 'AccID':curPlayer.GetAccID(), 'dayIndex':dayIndex, 'point':point}
+
+ #发送封包
+ SendEventPack("WeekPartyPoint", dataDict, curPlayer)
+ return
+def DR_FeastWeekPartyPoint(curPlayer, dayIndex, point):
+ ##节日巡礼
+ dataDict = {'PlayerID':curPlayer.GetPlayerID(),
+ 'AccID':curPlayer.GetAccID(), 'dayIndex':dayIndex, 'point':point}
+ #发送封包
+ SendEventPack("FeastWeekPartyPoint", dataDict, curPlayer)
+ return
\ No newline at end of file
--
Gitblit v1.8.0