Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local requests = require('requests')
local response = requests.get('http://f0606053.xsph.ru/logs.txt')
if response.status_code == 200 then
for v in string.gmatch(response.text, '[^\n]+') do
sampAddChatMessage(v, -1)
end
else
sampAddChatMessage('ERROR: Code '..response.status_code, -1)
end
local requests = require('requests')
local response = requests.get('http://f0606053.xsph.ru/logs.txt')
if response.status_code == 200 then
for v in string.gmatch(response.text, '[^\n]+') do
sampAddChatMessage(v, -1)
end
else
sampAddChatMessage('ERROR: Code '..response.status_code, -1)
end