Флудер при свернутой игре

Egor9118

Известный
Автор темы
42
5
Ребят, помогите найти флудер, который будет флудить командами скриптов, при свернутой игре.
Пример:
/ruka
задержка 500
/golova
задержка 500
/ruka
задержка 500
/golova
задержка 500
 

barjik

Известный
460
191
Lua:
local active = false

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    sampRegisterChatCommand('active', function()
        active = not active
        sampAddChatMessage(active and 'on' or 'off', -1)
    end)
    while true do
      wait(666) -- задержка
      
    if active then
    sampProcessChatInput('/ruka')
    wait(500) -- задержка перед вводом след команды
    sampProcessChatInput('/golova')
    wait(500)
    sampProcessChatInput('/ruka')
    wait(500)
    sampProcessChatInput('/golova')
    
        end
    end
end
 
  • Нравится
Реакции: Egor9118

Egor9118

Известный
Автор темы
42
5
Lua:
local active = false

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    sampRegisterChatCommand('active', function()
        active = not active
        sampAddChatMessage(active and 'on' or 'off', -1)
    end)
    while true do
      wait(666) -- задержка
     
    if active then
    sampProcessChatInput('/ruka')
    wait(500) -- задержка перед вводом след команды
    sampProcessChatInput('/golova')
    wait(500)
    sampProcessChatInput('/ruka')
    wait(500)
    sampProcessChatInput('/golova')
   
        end
    end
end
Спасибо большое, а как активировать?)