function checkregiacc(ip1,ip2)
lua_thread.create(function()
local errorregi=false
city2=nil
country2=nil
isp2=nil
city1=nil
country1=nil
isp1=nil
errorregi=nil
asyncHttpRequest("GET", 'http://ip-api.com/json/'..ip1..'?lang=ru', nil,
function(response)
local regvrem = u8:decode(response.text)
city1,country1,isp1 = regvrem:match('city%":%"(.*)%"%,%"country%":%"(.*)%"%,%"countryCode.*%"isp%":%"(.*)%"%,%"lat%"')
end,
function(err)
print(err)
sampAddChatMessage('[Ошибка] Не удалось загрузить информацию о REG IP', 0xFF0000)
errorregi = true
end)
asyncHttpRequest("GET", 'http://ip-api.com/json/'..ip2..'?lang=ru', nil,
function(response)
local regvrem = u8:decode(response.text)
city2,country2,isp2 = regvrem:match('city%":%"(.*)%"%,%"country%":%"(.*)%"%,%"countryCode.*%"isp%":%"(.*)%"%,%"lat%"')
end,
function(err)
print(err)
errorregi = true
sampAddChatMessage('[Ошибка] Не удалось загрузить информацию о LAST IP', 0xFF0000)
end)
while not city1 or not city2 or errorregi==true do wait(0) end
if city1 and city2 then
sampAddChatMessage(country1..' '..country2, -1)
sampAddChatMessage(city1..' '..city2, -1)
sampAddChatMessage(isp1..' '..isp2, -1)
else
sampAddChatMessage('[Ошибка] Не удалось загрузить информацию.', 0xFF0000)
end
end)
end