5 lines
102 B
Lua
5 lines
102 B
Lua
local function tohex(input)
|
|
local output = string.format("%x", input * 256)
|
|
return output
|
|
|
|
|