Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Сделал максимально простой скрипт для себя. При нажатии "1" пишется команда /lock
(Грубо говоря биндер на .lua)
Как сделать так, чтобы скрипт не активировался при наборе текста (При открытом чате)
Можете вставить шо нужно в код? То я слишком тупой в скриптинге)
Lua:
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_1) then
sampSendChat("/lock")
end
end
end
require "lib.moonloader"
function main()
while true do wait(0)
if isKeyJustPressed(VK_1) and not sampIsCursorActive() then
sampSendChat("/lock")
end
end
end
Можете вставить шо нужно в код? То я слишком тупой в скриптинге)
Lua:
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_1) then
sampSendChat("/lock")
end
end
end
Можете вставить шо нужно в код? То я слишком тупой в скриптинге)
Lua:
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_1) then
sampSendChat("/lock")
end
end
end
require "lib.moonloader"
function main()
while true do wait(0)
if isKeyJustPressed(VK_1) and not sampIsCursorActive() then
sampSendChat("/lock")
end
end
end