I have been trying to attempt this for... idk how long today. But I can't get it to work. I want a custom join message for certain people. So when they come in, the stream and I know they joined.

The current script I have right now:
Code:
on *:join:#: {
  if ($nick == NICKHERE) {
    msg # NICKHERE has joined the stream!!!
  } else return
}
on *:join:#: {
  if ($nick == NICK2HERE) {
    msg # NICK2HERE is lurking, watch out for the ban hammer!!!
  } else return
}



With this, only the first one shows up when they join. No join commands work after that.

EDIT:

Alright, I realized my mistake and worked through it. For anyone else that might want to know just edit this with the nick's of who you want custom welcome messages for and edit the msg as well.


Code:
on *:join:#: {
  if ($nick == NICKHERE) {
    msg $chan Hey $nick welcome back bro!!
  }
  if ($nick == WIFESNICK) {
    msg $chan *insert darth vader theme music* Oh, I mean... Hello wifey!
  }
}

Last edited by Bramzee; 27/04/14 02:04 AM.