Thanks to everyone for replying!

Here's what I have:
Code:
on *:connect:{
  if (slashnet isin $network) {
    if $me != $mnick {      .nick $v2    }
  }
}
on *:notice:*is registered and protected*:{
  if ($nick == nickserv) {    .msg $v2 identify abc123  }
}
on *:notice:Password accepted*:*{
  if $nick == nickserv {    .join #testchannel  }
}
on *:op:#:{
  if $opnick == $me {    .mode $chan +k 123xyz  }
}
I don't understand where the nick gets changed from my normal nick to the nick I want to use on this server. I am using slashnet.org only for an online game clan and want to use my clan name only with this server. I messed around with the code for a couple hours just to try to even get identify to work when I set my nick to the correct one before joining the server. I just can't seem to get any of this do anything.

Even just trying this after identifying isn't doing anything.
Code:
on *:notice:Password accepted*:*{
  if $nick == nickserv {    .join #testchannel  }
}


What am I missing?

Thanks!

Last edited by BlackAcidDevil; 25/06/09 03:04 AM.