Что не так Lua?

Maximilian_A_Diamond

Потрачен
Автор темы
7
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Что тут не так?
Суть скрипта просто, нажимает кнопку, скрипт кликает 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
 
Решение
/hbot - вкл \ выкл
Делать проверки на нажатие кнопок можно лишь в цикле

Lua:
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()
  while not isSampAvailable() do wait(100) end
  sampRegisterChatCommand("hbot", func)
  while true do wait(0)
    if func then
       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)...

lemonager

Известный
Всефорумный модератор
810
1,721
/hbot - вкл \ выкл
Делать проверки на нажатие кнопок можно лишь в цикле

Lua:
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()
  while not isSampAvailable() do wait(100) end
  sampRegisterChatCommand("hbot", func)
  while true do wait(0)
    if func then
       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
   end
end
function func()
    func = not func
        if func then
            sampAddChatMessage("Нажимайте кнопки!",-1)
            else
            sampAddChatMessage("Выключено",-1)
        end
end