- 67
- 19
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
- Версия SA-MP
-
- Любая
Код:
require 'lib.moonloader'
local enable = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand(floodalt, function()
enable = not enable
lua_thread.create(function()
wait(0)
if enable then
setVirtualKeyDown(18, true)
wait(500)
setVirtualKeyDown(18, false)
end
end)
end)
while true do
wait(0)
end
end