Проверка на чат и консоль

GRAZER01

Известный
Автор темы
6
1
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
::start::
if isKeyDown(0x4F) then
sampSendChat('/lifejump')
wait(1000)
goto start
end
end
end

нужно чтобы была проверка на чат и консоль сампфункса, помогите вставить в нужное место - не получается куда бы не поставил, не шарю в луа
 

MLycoris

На вид оружие массового семяизвержения
Проверенный
1,992
2,187
Lua:
function main()
    while not isSampAvailable() do wait(100) end
    while true do wait(0)
        if isKeyDown(0x4F) and not sampIsCursorActive() and not isSampfuncsConsoleActive() then
            sampSendChat("/lifejump")
            wait(1000)
        end
    end
end