Hi. How would you ignore channel text from users that start with say 10 spaces? For example:

Code:
<userA> 123456789012345
<userB>           ignore this line
<userC> more text

I'd want to ignore the line from userB.

I tried:

on ^*:text:*:#test:{ if ($regex($1-,^(\s){10,})) { haltdef } }

But it didn't seem to work.
Thanks for the help guys!

Last edited by beer; 14/10/17 08:02 PM.