- 92
- 31
- Версия MoonLoader
- .026-beta
Подскажите как это можно реализовать. Нучно что бы после появления на текстдраве нужной клавиши она автоматически нажималась.
lua:
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(1)
end
end
local sampev = require 'lib.samp.events'
function sampev.onShowTextDraw(id, data)
if data == 'H' then
lua_thread.create(function()
setVirtualKeyDown(72, true)
wait(20)
setVirtualKeyDown(72, false)
end)
end
end