1
0
Fork 0
forked from Simnation/Main
Main/resources/[standalone]/illenium-appearance/server/util.lua

13 lines
317 B
Lua
Raw Permalink Normal View History

2025-06-07 08:51:21 +02:00
math.randomseed(os.time())
local urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"
function GenerateNanoID(size)
local id = ""
for _ = 1, size do
local randomIndex = math.random(64)
id = id .. urlAlphabet:sub(randomIndex,randomIndex)
end
return id
end