I saw that a Forum User named Jarvis actually got one working with the bar's being removed/added instead of staying on the screen. Does anyone have something that will do this dynamic like that? I'm trying to write one myself, however, I am having problems getting the bar's to remove themselves.
require "InfoBox"
box = InfoBox:New("ARMOR")
buffs = box:AddBar("Buffs")
box.Bars[1].captionPlacement = 4
box:CaptionPlacement()
box:Update()
function buff_on (spell)
buffs = box:AddBar(spell, 100, "darkgreen")
box.Bars[1].captionPlacement = 4
box:CaptionPlacement()
box:Update()
end
function buff_off (spell)
buffs = box:AddBar(spell, 100, "darkred")
box.Bars[1].captionPlacement = 4
box:CaptionPlacement()
box:Update()
end