- 7
- 0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Что тут не так?
Суть скрипта просто, нажимает кнопку, скрипт кликает textdraw
Суть скрипта просто, нажимает кнопку, скрипт кликает textdraw
Мой код:
require "lib.moonloader"
require "lib.sampfuncs"
local ffi = require "ffi"
ffi.cdef[[
void keybd_event(int keycode, int scancode, int flags, int extra);
]]
function main()
repeat wait(0) until isSampAvailable()
wait(1000)
sampRegisterChatCommand("hbot", func)
wait(-1)
end
function hbot()
if isKeyJustPressed(VK_UP) then
sampSendClickTextdraw(2085)
end
if isKeyJustPressed(VK_DOWN) then
sampSendClickTextdraw(2083)
end
if isKeyJustPressed(VK_RIGHT) then
sampSendClickTextdraw(2084)
end
if isKeyJustPressed(VK_LEFT) then
sampSendClickTextdraw(2082)
end
end