Posted 22 October 2012 - 03:37 PM
Im trying to print my table of user so i dont have to type them out. anything will help, all i want is to print wahts in the table, such as users
for i,v in ipairs(userTable) do
print(v)
end
local pad = " "
local usersPerLine = 3
for i,v in ipairs(userTable) do
write(v)
if i % usersPerLine == 0 then
print()
else
write(pad)
end
end