Shouldn't that be

Code:
if $($+(%,varcheck,.,$nick($1,%i)),2) {
?

I assume you want %varcheck.nickname

Since you are using $nick($1,%i) several times in the while loop, I'd be tempted to make it a var:

Code:
while () {
var %nick = $nick($1,%i)
...
}


and then use %nick anywhere you have that $nick() construct. Makes it slightly more self-documenting, too laugh

Last edited by Sais; 21/12/06 04:54 PM.