-- this script was made to get debug info about new hub flooders. -- if deflood doesn't work against a flooder then pls run this script. -- and send me the log file so i can try to find a way to filter it with deflood. -- plop HugeTable = {} HugeTable2 = {} counter = 0 max = 25 now = date("%x") function save() appendto("logs/"..now.."flood.log") for a,b in HugeTable do if HugeTable2[a] == nil then write(a.."\n") HugeTable2[a] = 1 end end writeto() end function DataArrival(user, data) if strsub(data, 1, 7) == "$MyINFO" then if HugeTable[(user.sName.." "..data)] == nil then HugeTable[(user.sName.." "..data)] = 1 counter = counter +1 if counter >= max then counter = 0 save() end end end if now ~= date("%x") then save() HugeTable = nil HugeTable2 = nil counter = 0 now = date("%x") end end