8691 【主干】GM后台增加流向查询(上架拍品增加记录流向类型);
# Conflicts:
# ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
| | |
| | | for playerID in killerIDList:
|
| | | killer = GameWorld.GetPlayerManager().FindPlayerByID(playerID)
|
| | | if not killer:
|
| | | GameWorld.ErrLog("击杀跨服boss时主服玩家不在线, playerID=%s,mapID=%s,bossID=%s" % (playerID, mapID, bossID))
|
| | | #GameWorld.ErrLog("击杀跨服boss时主服玩家不在线, playerID=%s,mapID=%s,bossID=%s" % (playerID, mapID, bossID))
|
| | | #DataRecordPack.SendEventPack("CrossBoss_Error", {"PlayerID":playerID, "Error":"MainServerOffline"})
|
| | | killTime = int(time.time())
|
| | | PyGameData.g_unNotifyKillCrossBossDict[playerID] = [killTime, mapID, bossID]
|
| | |
| | | ItemDel_LingQiEquipBreak, # 灵器突破 40
|
| | | ItemDel_HorsePetAwake, # 骑宠觉醒
|
| | | ItemDel_ActivityPlace, # 活跃放置
|
| | | ) = range(2000, 2000 + 43)
|
| | | ItemDel_AuctionHouse, # 拍卖
|
| | | ) = range(2000, 2000 + 44)
|
| | |
|
| | | # 物品扣除类型对应信息 {类型:eventName, ...}
|
| | | ItemDelTypeDict = {
|
| | |
| | | ItemDel_LingQiEquipBreak:"LingQiEquipBreak",
|
| | | ItemDel_HorsePetAwake:"HorsePetAwake",
|
| | | ItemDel_ActivityPlace:"ActivityPlace",
|
| | | ItemDel_AuctionHouse:"AuctionHouse",
|
| | | }
|
| | |
|
| | | ##==================================================================================================
|