WoW:USERAPI RGBToHex: Difference between revisions

m
Move page script moved page USERAPI RGBToHex to WoW:USERAPI RGBToHex without leaving a redirect
No edit summary
 
m (Move page script moved page USERAPI RGBToHex to WoW:USERAPI RGBToHex without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:


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