I'm not much into scripting, but a friend helped me and made this little script so that my irc client would automatically reclaim my nick after a disconnect and quick reconnect when the nick finaly times out (got a fairly unstable connection). Trouble is that I cant get it to work with plain mIRC but it works flawlessy with a ircN modded mIRC. Can anyone enlighten me..? Whats wrong with it?

---
on *.LOAD: {
set %stealnick XXXXX }
on *:UNOTIFY: {
if ( ($nick == %stealnick) && ($nick != $me)) {
nick %stealnick
}
}

---

Thnx in advance.