Hi Folks...

Running a very basic filter script to try and catch mum/mom/mother nicks and for the most part it works fine. The only issue we have is when numbers are added to the end of the nick and the script no longer catches them. I have tried to add \{\d+:\d+\} to the end of the catch but it doesnt work.. could i have a fix please?

The partial script with the catcher is...
Code
on ^*:snotice:*:{
  if (is now a isin $1-) {
    window -nek @StatusNotice
    aline -hp  @StatusNotice 4 $+ $1- at $time on $date
    haltdef
  }
  if (Client connecting isin $1-) {
    window -nek @Connecting
    aline -hp  @Connecting 4 $+ $1- at $time on $date on $network
    msg #mastercontrol 6CONN $4 at $time and their IP is $remove($6,$chr(91),$chr(93))
    ;echo -s connecting ip $4 is $remove($6,$chr(91),$chr(93))
    if (*mum iswm $4) /msg #filters 8,1CHECK NICK  mum based nick. check it - $4
    if (mother* iswm $4) /msg #filters 8,1CHECK NICK  mother based nick. check it - $4
    if (*mom iswm $4) /msg #filters 8,1CHECK NICK mom based nick. check it - $4
    if (mom* iswm $4) /msg #filters 8,1CHECK NICK mom based nick. check it - $4
    if (*mom[\{\d+:\d+\} iswm $4) /msg #filters 8,1CHECK NICK mom based nick. check it - $4


I'm trying to catch nicks like boredmom12 or strangemom98 etc etc...