Thread: Vampire Info?
View Single Post
04/16/20, 02:49 PM   #10
Kenza
AddOn Author - Click to view addons
Join Date: Feb 2017
Posts: 31
Thats great, thank you so much!

Some other minor things I changed while messing around with it myself...

For some reason the icon is very dark. From what I can tell, it shows it at .1 alpha unless it doesnt have a cooldown? But wont it always have a cooldown, unless at stage 4, I suppose? So I changed (around line 310) to:
VampireInfoTLCIcon:SetAlpha(0.8)

And I didnt want it to show on my non-vamp chars, so I added an 'else' to:

Code:
if buffName ~= nil and timeEnding ~= nil and updateTime ~= nil and timeStarted ~= nil then
       -- blahblahblah

        VampireInfo:SetHidden(false)
else
        VampireInfo:SetHidden(true)
end
  Reply With Quote