Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Добрый день, помоги сделать выключение скрипта. К примеру, когда нажал на L, сработало определённое действие и работает постоянно, как можно добавить выключение?
if isKeyJustPressed(VK_L) then
setInfraredVision(true)
end
local active = false
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if isKeyJustPressed(VK_L) then
active = not active
sampAddChatMessage(active and 'on' or 'off', -1)
setInfraredVision(active)
end
end
end
local active = false
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if isKeyJustPressed(VK_L) then
active = not active
sampAddChatMessage(active and 'on' or 'off', -1)
setInfraredVision(active)
end
end
end