Guest User

Untitled

a guest
Apr 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. hi kelly x long time NO SPEAK
  2.  
  3. on @*:text:*:#:{
  4. ;change the '10' to whatever minimum count you want
  5. if ($highlightCount($1-, $chan) >= 10) {
  6. ban -k $chan $nick 2 Mass Highlight Detected
  7. }
  8. }
  9. /* nick count, removing duplicates
  10. */
  11. alias highlightCount {
  12. var %x 1, %line = $strip($1-), %nicks
  13. while (%x < $numtok(%line, 32)) {
  14. if ($remove($gettok(%line, %x, 32), $chr(44), @, %, +) ison $2) {
  15. var %nicks $addtok(%nicks, $v1, 32)
  16. }
  17. inc %x
  18. }
  19. return $numtok(%nicks, 32)
  20. }
Add Comment
Please, Sign In to add comment