| | |
| | |
|
| | | public void ReceivePackage(HB502_tagGCPlayerAuctionItemInfo package)//拍卖行玩家拍卖中的物品信息
|
| | | {
|
| | | bool isPushAuctionItem = false;
|
| | |
|
| | | for (int i = 0; i < package.AuctionItemCount; i++)
|
| | | {
|
| | | var data = package.AuctionItemList[i];
|
| | |
| | | {
|
| | | item = new AuctionItem(guid);
|
| | | PushAuctionItem(item);
|
| | |
|
| | | isPushAuctionItem = true;
|
| | | }
|
| | |
|
| | | item.itemGuid = UIHelper.ServerStringTrim(data.ItemGUID);
|
| | |
| | | {
|
| | | myAuctionRefresh();
|
| | | }
|
| | |
|
| | | if (isPushAuctionItem && isServerPrepare)
|
| | | {
|
| | | if (!NewBieCenter.Instance.inGuiding && !WindowCenter.Instance.IsOpen<LoadingWin>()
|
| | | && StageLoad.Instance.stageType == Stage.E_StageType.Dungeon)
|
| | | {
|
| | | WindowJumpMgr.Instance.ClearJumpData();
|
| | | WindowCenter.Instance.CloseAll(WindowCenter.CloseAllIgnoreType.BaseAndCustom);
|
| | | WindowCenter.Instance.Open<AuctionHouseWin>(false, 2);
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | public void ReceivePackage(HB503_tagGCPlayerAuctionRecordInfo package)//拍卖行玩家拍卖记录
|