I am trying to make Chatterino (Twitch chat) warn me when the same message is sent over and over again. Chatterino uses REGEX PCRE2 flavor to check if pattern was sent in chat. ^bot\b == warning when someone typed the word "bot" once. I wanted to create a warning for repeated messages from different users. example:
user0: nice -->no warning
user1: nice -->warning
The warning should occur not only for the word nice, but for every word that is repeated in sequence Is it possible?
The wiki shows me these lines: x* x, repeated any number of times x+ x, repeated any number of times but at least 1
But from what I've noticed, it warns me when a x is repeated within the same message. I want the warning to occur when different messages are x