WoW:USERAPI RGBToHex: Difference between revisions

m
Imp RGBToHex
No edit summary
 
m (Imp RGBToHex)
Line 5: Line 5:


  local function RGBToHex(r, g, b)
  local function RGBToHex(r, g, b)
return string.format("%02x%02x%02x", r, g, b)
    if r > 255 or r < 0 then
        r = 0
    end
    if g > 255 or g < 0 then
        g = 0
    end
    if b > 255 or b < 0 then
        b = 0
    end
    return string.format("%02x%02x%02x", r, g, b)
  end
  end
Anonymous user