Thread Tools Display Modes
12-31-15, 06:36 PM   #1
EvilMaddness
An Aku'mai Servant
 
EvilMaddness's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2015
Posts: 33
Bar meter color change for Mind Blast CD on Weakauras

Hey everyone This lua code works fine as is for WeakAuras2

Lua Code:
  1. function(progress, r1, g1, b1, a1, r2, g2, b2, a2)
  2.     local start, duration, enable = GetSpellCooldown("Mind Blast")
  3.     local warning_time = 3
  4.     local progress = start + duration - GetTime()
  5.     if start>0 then
  6.         if progress < warning_time then
  7.             return r2, g2, b2, a2
  8.         end
  9.     end
  10.     return r1,g1,b1, a1
  11. end
__________________
The Maddness Within lua

Last edited by EvilMaddness : 01-04-16 at 09:44 AM.
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Bar meter color change on warning time need help


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off