ESX Licensing

This commit is contained in:
GhzGarage
2021-07-06 16:04:18 -05:00
parent e065d2989a
commit e5ffe58b38
4 changed files with 696 additions and 10 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ for i = 48, 57 do table.insert(NumberCharset, string.char(i)) end
for i = 65, 90 do table.insert(StringCharset, string.char(i)) end
for i = 97, 122 do table.insert(StringCharset, string.char(i)) end
QBShared.RandomStr = function(length)
QBShared.RandomStr = function(length) -- QBShared.RandomStr falls under GPL License here: [esxlicense]/LICENSE
if length > 0 then
return QBShared.RandomStr(length-1) .. StringCharset[math.random(1, #StringCharset)]
else