- 91
- 9
Короч, скрипт принимается, в мунлоадер лог все окс, пишет что активирован, а главная часть функции не робит (стрелочка не прокликивается). Хелп
P.S. Код делал для того, чтобы сюда залить. Наверное, не очень буит теперь((
Lua:
script_name("Scooter Bug")
script_version("1.0")
script_author("A. Lotte")
local vkeys = require 'vkeys'
function main()
if not isSampLoaded() and not isSampfuncsLoaded then return end
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('bug', command)
while true do
wait (0)
if Active == true then
setVirtualKeyDown(VK_UP, down)
wait(100)
setVirtualKeyDown(VK_UP, up)
end
end
end
function command()
Active = not Active
if Active == true then
printStringNow('Auto BUG ~G~Activated', 2000)
else
printStringNow('Auto BUG ~R~Deactivated', 2000)
end
end