Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
function sampev.onServerMessage(color, text)
if text:find('text') then
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end
end
local sampev = require 'lib.samp.events'
function sampev.onServerMessage(color, text)
if text:find('text') then
lua_thread.create(function() wait(10)
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end)
end
end
Из либы samp.events перехватывай событие onServerMessage(color, text)
Сверяй text на наличие нужной тебе фразы и при совпадении выполняй нужный тебе код.
function sampev.onServerMessage(color, text)
if text:find('text') then
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end
end
function sampev.onServerMessage(color, text)
if text:find('text') then
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end
end
local sampev = require 'lib.samp.events'
function sampev.onServerMessage(color, text)
if text:find('text') then
lua_thread.create(function() wait(10)
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end)
end
end