local useripaddress = ''
function GetUserIP()
local json = os.getenv('TEMP') .. '\\myIP.json'
downloadUrlToFile('http://ip-api.com/json/?fields=61439', json, function(id, status, p1, p2)
local dlstatus = require("moonloader").download_status
if status == dlstatus.STATUS_ENDDOWNLOADDATA then
local f = io.open(json, 'r') -- открывает файл
if f then
local ip = decodeJson(f:read('*a')) -- читает
useripaddress = ip.query
f:close()
os.remove(json)
end
end
end)
end