From 9a5d8288ba607bdcd67cb93e03c7f09ece8b1569 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 13 三月 2026 14:29:24 +0800
Subject: [PATCH] 556 【付费功能】时装商店-服务端(优化时装转化碎片时A801通知,封包修改货币增加IsBind,同物品标记逻辑,时装转化标记=40;)

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

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index 2740e30..7365f9b 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
@@ -303,7 +303,7 @@
     SendEventPack("FBPass_%s" % mapID, dataDict, curPlayer)
     return
 
-def DR_FightStat(reqPlayerID, mapID, funcLineID, isWin, turnNum, turnMax, heroCount, costTime, statInfo, drLineupInfo, guid):
+def DR_FightStat(reqPlayerID, mapID, funcLineID, isWin, turnNum, turnMax, heroCount, costTime, drHeroIDDict, guid):
     ## 战斗统计
     dataDict = {'PlayerID':reqPlayerID, 'mapID':mapID, 'funcLineID':funcLineID, 'isWin':isWin, 
                 'turnNum':turnNum, 'turnMax':turnMax, 'heroCount':heroCount, 'costTime':costTime, 'guid':guid}
@@ -315,32 +315,10 @@
         if mapID in mapPassDict:
             drLineID = mapPassDict[mapID]
             if funcLineID >= drLineID:
-                failDRDict = {"statInfo":statInfo, "drLineupInfo":drLineupInfo}
+                failDRDict = {"heroIDDict":drHeroIDDict}
                 failDRDict.update(dataDict)
                 SendEventPack("FightPass_%s" % mapID, failDRDict, checkBatServer=False)
                 #SendEventPack("FightFail_%s" % mapID, failDRDict, checkBatServer=False)
-    return
-
-##累计登陆礼包
-def DR_LoginDayAward(curPlayer, dayIndex):
-    dataDict = {'PlayerID':curPlayer.GetPlayerID(), 
-                'PlayerName':curPlayer.GetPlayerName(), 
-                'AccID':curPlayer.GetAccID(),
-                "DayIndex":dayIndex
-                }
-    
-    SendEventPack("LoginDayAward", dataDict, curPlayer)
-    return
-
-##等级礼包
-def DR_LVAward(curPlayer, awardID):
-    dataDict = {'PlayerID':curPlayer.GetPlayerID(), 
-                'PlayerName':curPlayer.GetPlayerName(), 
-                'AccID':curPlayer.GetAccID(),
-                "AwardID":awardID
-                }
-    
-    SendEventPack("LVAward", dataDict, curPlayer)
     return
 
 ## GM执行命令操作

--
Gitblit v1.8.0