Не работает поток

Heav

Активный
Автор темы
185
71
Версия MoonLoader
.026-beta
Создал поток с вводом текста в чат по нажатию клавиши, но работать он не хочет.
Lua:
function hotkey()
    while true do
        wait(0)
        if not isCharInAnyCar(PLAYER_PED) then
            if isKeyJustPressed(VK_Z) and not sampIsChatInputActive() and not sampIsDialogActive() then
                sampSendChat("Text")
            end
        end
    end
end
 

YarikVL

Известный
Проверенный
4,740
1,816
Создал поток с вводом текста в чат по нажатию клавиши, но работать он не хочет.
Lua:
function hotkey()
    while true do
        wait(0)
        if not isCharInAnyCar(PLAYER_PED) then
            if isKeyJustPressed(VK_Z) and not sampIsChatInputActive() and not sampIsDialogActive() then
                sampSendChat("Text")
            end
        end
    end
end
А ты функцию hotkey() вызываешь?
И если ты юзаешь беск цикл не в main то нужно беск цикл засунуть в поток ( https://www.blast.hk/threads/13892/post-456346 )
 
  • Нравится
Реакции: Heav и MLycoris

Heav

Активный
Автор темы
185
71
А ты функцию hotkey() вызываешь?
И если ты юзаешь беск цикл не в main то нужно беск цикл засунуть в поток ( https://www.blast.hk/threads/13892/post-456346 )
в main создаю поток функцией lua_thread.create
Lua:
function main()
    lua_thread.create(hotkey)
    -- код
end

так правильно
Lua:
require 'lib.moonloader'
function main()
    while true do
        if isKeyJustPressed(VK_Z) and not sampIsCursorActive() and not isCharInAnyCar(1) then
            sampSendChat("Text")
        end
        wait(0)
    end
end
Стало работать, теперь скрипт полноценно работает вместе с другой функцией что была ранее в main