| | |
| | | DailyActionID_SkyTower, # 天星塔 23
|
| | | DailyActionID_HorsePetBoss, # 骑宠BOSS 24
|
| | | DailyActionID_FairyDomain, # 缥缈仙域 25
|
| | | ) = range(1, 25 + 1)
|
| | | DailyActionID_AuctionItem, # 拍卖行上架/竞拍 26
|
| | | ) = range(1, 26 + 1)
|
| | |
|
| | |
|
| | |
|
| | |
| | | VIPPrivilege_18, #18 洗炼副本购买次数 - 副本总表统一处理
|
| | | VIPPrivilege_19, #19 虚无禁地额外次数 - 副本总表统一处理
|
| | | VIPPrivilege_20, #20 暮光神庙购买次数
|
| | | VIPPrivilege_21, #21 恶魔深渊购买次数 - 副本总表统一处理
|
| | | VIPPrivilege_22, #22 黑暗之门购买次数
|
| | | VIPPrivilege_21, #21 仙界秘境 - 副本总表统一处理
|
| | | VIPPrivilege_22, #22 宗门试炼购买次数
|
| | | VIPPrivilege_FamilyGoldPack, #23 仙盟钻石红包
|
| | | VIPPrivilege_BoursePwd, #24 集市上架使用密码
|
| | | VIPPrivilege_25, #25 封魔坛购买次数 - 副本总表统一处理
|
| | |
| | | VIPPrivilege_XianyuanCoinUpperAdd, #33 仙缘币上限加成
|
| | | VIPPrivilege_XianyuanCoinAddPer, #34 仙缘币获得倍率加成(万分比)
|
| | | VIPPrivilege_35, #35 诛仙BOSS购买次数 - 副本总表统一处理
|
| | | ) = range(1, 36)
|
| | | VIPPrivilege_36, #36 仙丹批量炼制
|
| | | ) = range(1, 37)
|
| | |
|
| | |
|
| | | (
|
| | |
| | | import ItemCommon
|
| | | import ChConfig
|
| | | import ShareDefine
|
| | | import PlayerActivity
|
| | |
|
| | | import time
|
| | |
|
| | |
| | | DR_AuctionHouse(curPlayer, "PlayerPayBid", infoDict)
|
| | | playerID = curPlayer.GetPlayerID()
|
| | | QueryGameServer_AuctionHouse(playerID, "BidAuctionItem", [itemGUID, biddingPrice])
|
| | | |
| | | PlayerActivity.AddDailyActionFinishCnt(curPlayer, ShareDefine.DailyActionID_AuctionItem, 1)
|
| | | return
|
| | |
|
| | | def __DoPlayerSellAuctionItem(curPlayer, itemIndex, itemGUID, itemID):
|
| | |
| | | GameWorld.DebugLog("上架拍品: playerID=%s,familyID=%s,%s" % (playerID, familyID, drDict), playerID)
|
| | |
|
| | | QueryGameServer_AuctionHouse(playerID, "AddAuctionItem", addAuctionItemList)
|
| | | if curPlayer:
|
| | | PlayerActivity.AddDailyActionFinishCnt(curPlayer, ShareDefine.DailyActionID_AuctionItem, 1)
|
| | | return
|
| | |
|
| | | def DR_AuctionHouse(curPlayer, eventName, drDict):
|
| | |
| | | DailyActionID_SkyTower, # 天星塔 23
|
| | | DailyActionID_HorsePetBoss, # 骑宠BOSS 24
|
| | | DailyActionID_FairyDomain, # 缥缈仙域 25
|
| | | ) = range(1, 25 + 1)
|
| | | DailyActionID_AuctionItem, # 拍卖行上架/竞拍 26
|
| | | ) = range(1, 26 + 1)
|
| | |
|
| | |
|
| | |
|