Как решить

KillAnMan

Активный
Автор темы
206
39
Версия MoonLoader
.026-beta
Lua:
script_name("Anim on CAPS")
script_version("0.1")
local vkeys = require 'vkeys'

function main()
  if not isSampfuncsLoaded() or not isSampLoaded() then return end
  while not isSampAvailable() do wait(100) end

    while true do
        wait(0)
        if isKeyDown(VK_CAPITAL) and not isSampAvailable() and not sampIsChatInputActive() and not sampIsDialogActive() then
            sampSendChat('/anim 1')
        end
    end
end
Чтобы при нажатие на капс, проверялось активен ли диалог, чат, консоль, если из этого ничего не активно, значит в чат пишется /anim 1, но не работает

всё, понял свою ошибку
Lua:
script_name("Anim on capital")
script_version("0.2")
require "lib.moonloader"
function main()
  if not isSampfuncsLoaded() or not isSampLoaded() then return end
  while not isSampAvailable() do wait(100) end
  while true do
  wait(0)
    if isKeyJustPressed(VK_CAPITAL) and not isSampfuncsConsoleActive() and not sampIsChatInputActive() and not sampIsDialogActive() then
      sampSendChat("/anim 1")
    end
  end
  end
 
Последнее редактирование: