Server.Network.VendorBuyContent6017.VendorBuyContent6017 C# (CSharp) Méthode

VendorBuyContent6017() public méthode

public VendorBuyContent6017 ( List list ) : System
list List
Résultat System
        public VendorBuyContent6017( List<BuyItemState> list )
            : base(0x3c)
        {
            this.EnsureCapacity( list.Count*20 + 5 );

            m_Stream.Write( (short)list.Count );

            //The client sorts these by their X/Y value.
            //OSI sends these in wierd order.  X/Y highest to lowest and serial loest to highest
            //These are already sorted by serial (done by the vendor class) but we have to send them by x/y
            //(the x74 packet is sent in 'correct' order.)
            for ( int i = list.Count - 1; i >= 0; --i )
            {
                BuyItemState bis = (BuyItemState)list[i];

                m_Stream.Write( (int)bis.MySerial );
                m_Stream.Write( (ushort)bis.ItemID );
                m_Stream.Write( (byte)0 );//itemid offset
                m_Stream.Write( (ushort)bis.Amount );
                m_Stream.Write( (short)(i+1) );//x
                m_Stream.Write( (short)1 );//y
                m_Stream.Write( (byte)0 ); // Grid Location?
                m_Stream.Write( (int)bis.ContainerSerial );
                m_Stream.Write( (ushort)bis.Hue );
            }
        }
VendorBuyContent6017