minetest.auth_reload - Uberi/MineTest-API GitHub Wiki
This calls the authentication handler. Can also be accessed with the chatcommand /auth_reload
auth_reload()
local pos = {x=1,y=2,z=3}
local string = "hello world"
minetest.after(3.5, function(param)
print("3.5 seconds later, we can do " .. param.string .. " at " ..
minetest.pos_to_string(param.pos))
end, {pos=pos, string=string})