This module will print everyone's name on the chat
local test = {
on_pre_update = function()
local list = world.entities()
for i = 1, #list do
local entindex = list[i]
client.print(world.name(entindex))
end
end,
}
module_manager.register('hello', test)