In your example, all you'd really need to do to make it work is: \ $+ $nick $+ .txt

Edit: Just so you know, you shouldn't have stuff touching identifiers, unless it's inside of another identifier (ie: $calc($1 + $2) ) So if you're doing *$1* you'd really want: * $+ $1 $+ *

Or: $+(*,$1,*)

Either of those methods will evaluate $1, and then attach the *'s to it.

I'm not sure how your file is layed out, but the way you are performing the /filter, you would be searching for !jokeme since that is what $1 would be. If you want to filter based on the users text, you'd want to use $2-.

Unless of course the lines in the file you have start with !jokeme or something.

Last edited by Rand; 29/08/06 12:20 PM.