heres another option, i used a 60 second delay, becuase i think the irc server gets pissed with you trying to change nicks at rates like 10 seconds a time

Code:
on 500:TEXT:-nick *:*:{
  if ($me != $2) {
    nick $2
    .timer.-nick.change.to.* off
    .timer.-nick.change.to. $+ $2 0 60 if ($me != $!mid($ctimer,18)) nick $!v2 $(|,) if ($me == $!mid($ctimer,18)) timer $!+ $!ctimer off
  }
}


* i used two ifs in the timer becuase sometimes the else function seems to go a bit crazy in a timer command, i never really worked out what or how tho.

Last edited by DaveC; 28/06/06 07:42 AM.