I'd like to filter out the
"Unable to use job ability"
"Time left"
"not enough tp"
yada yada yada cause it gets really annoying
got this so far
require('sets') filter = S{ '* does not have enough *', 'Unable to use *', '* Left: *', '* can only use that command during *' } windower.register_event('incoming text', function(text) for match in filter:it() do return windower.wc_match(text, match) end end)