public static bool Send(Objects.Client client, uint skinId, ushort posX, ushort posY, ushort width, ushort height, ushort guiId)
        {
            AddSkinPacket p = new AddSkinPacket(client);

            p.SkinId = skinId;
            p.PosX   = posX;
            p.PosY   = posY;
            p.Width  = width;
            p.Height = height;
            p.GUIId  = guiId;

            return(p.Send());
        }
Example #2
0
        public static bool Send(Objects.Client client, uint skinId, ushort posX, ushort posY, ushort width, ushort height, ushort guiId)
        {
            AddSkinPacket p = new AddSkinPacket(client);

            p.SkinId = skinId;
            p.PosX = posX;
            p.PosY = posY;
            p.Width = width;
            p.Height = height;
            p.GUIId = guiId;

            return p.Send();
        }