Page 1 of 1

ask permissions for creating account?

PostPosted: Sat Apr 23, 2016 03:42
by linushsao
hi,alll

Is it possible that users have to ask permissions before creating account, and how to completely delete guest account & data?

Thanks for your reply.

Re: ask permissions for creating account?

PostPosted: Fri Jun 24, 2016 00:01
by red-001
You could use something like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
local users = {"singleplayer","another_user"}

minetest.register_on_prejoinplayer(function(name, ip)
   for _,current_name in pairs(users) do
      if name == current_name then
         return
      end
   end
   return "You are not allow to join this server"
end)