Add player count

Este commit está contenido en:
Ceda EI 2019-01-29 11:47:31 +05:30
padre f3b74b65ed
commit 149ab033b0
Se han modificado 1 ficheros con 9 adiciones y 1 borrados

Ver fichero

@ -1,10 +1,18 @@
local http_api = minetest.request_http_api()
function tablelength(T)
local count = 0
for _ in pairs(T) do count = count + 1 end
return count
end
function send_messages(res)
for message in string.gmatch(res["data"], "[^\n]+") do
if message == "list" then
local x = minetest.get_connected_players()
local text = "List of Players:\n"
local text = "List of Players ("
text = text .. tostring(tablelength(x)) .. "/"
text = text .. tostring(minetest.settings:get("max_users")) .. "):"
for j, i in ipairs(x) do
text = text .. "\n" .. i.get_player_name(i)
end