- 172
- 19
Всем привет, не знаю пишу в нужную тему или нет, но есть небольшая проблема, у меня есть код
проблема в том что он не работает, точнее активация и деактивация скрипта работает, но на нажатия клавиш, что бы те исполняли команды, он никак не реагирует
Lua:
require "lib.moonloader"
local script_state = false
local keybinds = {
{ VK_1, "/mask" },
{ VK_2, "/heal" },
{ VK_3, "/tp" },
{ VK_4, "/capture" },
{ VK_5, "/veh 411 69 69" },
{ VK_6, "/veh 510 69 69" }
{ VK_Z, "/anim 8" }
}
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('blind',
function()
script_state = not script_state
sampAddChatMessage('hello ,залупа, я ' .. (script_state and 'Включен' or 'Выключен'), -1)
end)
while true do wait(0)
if not sampIsChatInputActive() and not isSampfuncsConsoleActive() and not sampIsDialogActive() then
for i = 1, #keybinds do
if isKeyJustPressed(keybinds[i][1]) then sampSendChat(keybinds[i][2]) end
end
end
end
end