local se = require("samp.events")
local vkeys = require("vkeys")
function se.onServerMessage(color, text)
if sampIsChatInputActive() then -- если открыт чат
if text:find("СТРОКА КОТОРУЮ НАДО НАЙТИ") then -- если нашлась строка
pressEnter1() -- либо это
pressEnter2() -- либо это
end
end
end
function pressEnter1()
lua_thread.create(function()
setVirtualKeyDown(vkeys.VK_RETURN,true)
wait(10)
setVirtualKeyDown(vkeys.VK_RETURN,false)
wait(10)
setVirtualKeyDown(vkeys.VK_RETURN,true)
wait(10)
setVirtualKeyDown(vkeys.VK_RETURN,false)
end)
end
function pressEnter2()
for i=1, 2 do
local _, myId = sampGetPlayerIdByCharHandle(PLAYER_PED)
local data = allocateMemory(68)
sampStorePlayerOnfootData(myId, data)
setStructElement(data, 4, 2, 16)
sampSendOnfootData(data)
freeMemory(data)
end
end