--16進数を10進数に変換
function hextodec(x)
local n = tonumber(string.sub(x, -1, -1))
if n == nil then n = hextable[string.sub(x, -1, -1)] end
if string.len(x) == 1 then return n
else return hextodec(string.sub(x, 1, -2)) * 16 + n end
end
hextable = { a = 10, b = 11, c = 12, d = 13, e = 14, f = 15 }
使用例
out(1, hextodec("ffffff"))
_SETCOLOR(hextodec("ffcc99")))
色の16進指定にも使える。