Time Nick Message 02:54 OWNSyouAll Is there anyway to get a list of everyone that ever joined a server? 02:54 ShadowNinja ls worlds//players 02:55 ShadowNinja Or cat auth.txt | cut -d : 1 02:55 OWNSyouAll Anyway within the lua api? I would rather not create my own player DB if i can. 02:55 ShadowNinja (not sure about the cut syntax) 02:56 ShadowNinja for playername, data in pairs(minetest.auth_table) do ... end 02:57 OWNSyouAll I don't see minetest.auth_table in lua_api.txt but ill give that a try 02:58 ShadowNinja I guess that's technically a implementation detail/internal data structure. But it hasn't changed in a long time and probably won't change anytime soon. 02:58 OWNSyouAll Ok thanks i'll look into it