11-21-2014, 03:43 AM
@xoft Maybe we can just make MCServer get the bytes from each char in a string. In Lua it would look somewhere like this:
local Seed = "MySeed"
if (type(Seed) == 'string') then
local NewSeed = ""
for I = 1, Seed:len(), 1 do
NewSeed = NewSeed .. string.byte(Seed:sub(I, I))
end
Seed = NewSeed
end
print(Seed)

