how would i get this to kick after 60 seconds if they dont change their nick to something shorter?

on !*:NICK: {
var %c = #channel
var %nnick $newnick
if ($len(%nnick) >= 20) && (%nnick ison %c) && ($me isop %c) {
msg $chan %c $+(%nnick,!*@*) You nick is too long (max of 20 characters is only allowed) Please change it, or you will be kicked
timer 1 60 kick #channel %nnick Come Back With A Shorter Nick
}
if ($len(%nnick) <= 20) && (%nnick ison %c) && ($me isop %c) { halt }
}

thanks in advance smile