Version 0.3

- More configuration options
- Added another texture option for bars
- /icehud now opens Dewdrop menu directly
- Rogue/cat energy ticker
This commit is contained in:
iceroth
2006-07-28 13:10:25 +00:00
parent 6399796175
commit 61b0d95afa
15 changed files with 695 additions and 122 deletions

View File

@ -19,7 +19,7 @@ function PetMana.prototype:GetOptions()
opts["scale"] =
{
type = 'range',
name = 'scale',
name = 'Scale',
desc = 'Scale of the bar',
min = 0.2,
max = 1,
@ -30,7 +30,8 @@ function PetMana.prototype:GetOptions()
set = function(value)
self.moduleSettings.scale = value
self:Redraw()
end
end,
order = 31
}
return opts
end