Quote:
a script that can detect when someone makes a post that consists of only one or two types of characters such as sssssssssssssssssssssssss or !!!!!!!!!!!!!!
To kick for repeated letter abuse, you can do this with regex:
Code:
on @$*:text:/(.)\1{5}/:#:{
  kick # $nick Repeated characters detected!
}
This will kick repeated, same letters or characters that exceed more than 5 times.