try:
on *:join:#: {
if ( $nick == Name1 ) { msg $chan Text for your own 1 | halt }
if ( $nick == Name2 ) { msg $chan Text for your own 2 | halt }

msg $chan Text for your own 3

}

ovelayer  -  Mar 11, 2020

i would change the 2nd if to and elseif

on *:join:#: {
  if ( $nick == Name1 ) { msg $chan Text for your own 1 | exit }
  elseif ( $nick == Name2 ) { msg $chan Text for your own 2 | exit }
else {
  msg $chan Text for your own 3
 }
}
Sign in to comment

Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.