local active = false
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('otflood', cmd)
while true do
wait(0)
if active then
sampSendChat('/ot')
end
end
end
function cmd()
if active then
active = false
sampAddChatMessage('Флудер в /ot выключен', -1)
else
active = true
sampAddChatMessage('Флудер в /ot включен', -1)
end
end