View Single Post
04/25/14, 08:23 AM   #2
Ak0
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 20
I might as well give it a try

Code:
if someNumber <= 20 then -- If someNumber is less than or equal to 20
    STAddonLabelHTD:SetColor(0,1,0,1) -- Set the color to green
else -- If someNumber is anything else (e.g 21 and up)
    STAddonLabelHTD:SetColor(1,0,0,1) -- Set the color to red
end
Without checking I believe that should do it.

Last edited by Ak0 : 04/26/14 at 05:13 AM. Reason: Changed 255 to 1 because I'm dumb :)
  Reply With Quote