local q = require 'lib.samp.events'
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('floodEnter',function() -- проверяй, пожалуйста, код перед отправкой Register, а не Reguster
flood = not flood
end)
while true do wait(0)
if flood then setGameKeyState(15, 255) end
end
end