Example #1
0
        public static new bool Send(Objects.Client client, uint iconId, ushort posX, ushort posY, ushort size, ushort itemId, ushort itemCount, ClientFont font, Color color)
        {
            UpdateIconPacket p = new UpdateIconPacket(client);

            p.IconId = iconId;
            p.PosX = posX;
            p.PosY = posY;
            p.Size = size;
            p.ItemId = itemId;
            p.ItemCount = itemCount;
            p.Font = font;
            p.Color = color;

            return p.Send();
        }
        public static new bool Send(Objects.Client client, uint iconId, ushort posX, ushort posY, ushort size, ushort itemId, ushort itemCount, ClientFont font, Color color)
        {
            UpdateIconPacket p = new UpdateIconPacket(client);

            p.IconId    = iconId;
            p.PosX      = posX;
            p.PosY      = posY;
            p.Size      = size;
            p.ItemId    = itemId;
            p.ItemCount = itemCount;
            p.Font      = font;
            p.Color     = color;

            return(p.Send());
        }