Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local requests = require("requests")
-- получить свой IP
local response = requests.get("https://api.ipify.org")
if response.status_code == 200 then -- OK
print(response.text)
end
local requests = require("requests")
-- получить свой IP
local response = requests.get("https://api.ipify.org")
if response.status_code == 200 then -- OK
print(response.text)
end
local requests = require("requests")
function onRunCommand(cmd)
if cmd == "!getip" then
local response = requests.get("https://api.ipify.org")
if response.status_code == 200 then
print('Your IP is '..response.text)
end
end
end