Could you make an addon that applies this to chat
a = ‘this is a text from a spammer…WW…W. M–MO tank c.o…–m’
a = a:lower()
a = a.gsub(a, ‘[%p%s]’ , ‘’)
www_start,b = a.find(a, ‘www’)
com_start,b = a.find(a, ‘com’)
if www_start ~= nil and com_start ~= nil then
a = ‘***’
io.write(a)
else
io.write(a)
end