Basically I have on screen "windows" created with your library, there is a background, a border, a title bar and some bits for map text. The group is hidden most if the time except when you want to view it's contents, the problem is after being hidden for about 5 minutes every part of the group disappears when I show it except the background. Here is the code for the group.
Stat
parent_type= /HudGroup
icon = 'menu.dmi'
layer = 53
var
HudObject
base
L
R
T
B
TL
TR
BL
BR
Text
titmid
titright
titleft
title
closebutton
New(mob/m)
..()
base= add(0,0, width = 9, height = 9, icon_state = "center", layer= 52)
L = add(-29,0, width = 1, height = 9, icon_state = "left")
R = add(261,0, width = 1, height = 9, icon_state = "right")
T = add(0,261, width = 9, height = 1, icon_state = "top")
B = add(0,-5, width = 9, height = 1, icon_state = "bottom")
TL = add(-32,288, icon_state = "topleft")
TR = add(261,288, icon_state = "topright")
BL = add(-32,-5, icon_state = "bottomleft")
BR = add(261,-5, icon_state = "bottomright")
Text = add(-1,5, layer = 54)
Text.set_maptext(maptext = "<center><font face = Arial><font color=#777><b>Name:</b> [m.key]<p> <b>Health:</b> [m.hp]/[m.maxhp] <br> <b>Mana:</b> [m.mp]/[m.maxmp]<br><b>Experience:</b> [m.xp]/[m.maxxp]<p><p><p><p><p><p><p><p><p><p><p><p><p>", width = 288, height = 288)
titleft = add(0,257, icon_state = "titleft")
titright = add(256,257, icon_state = "titright")
titmid = add(32,257, width = 7, icon_state = "titmid")
title = add(-2, 270)
title.set_maptext(maptext = "<center><font face = Arial Black><font color=#777><b>Stats</b>", width = 288, height = 32)
closebutton = add(253,270, icon_state = "close", layer = 54)
closebutton.name = "stat close"
pos(128,128)
hide()