;this is for join a channel of all rooms.
on 1:join:#:{
if ( $nick == $me ) /msg $chan Good Morning Room
else /msg $chan $nick Welcome To This Rom
}
;you can do it in your own room. like this...
on 1:join:#mIRC,#Help:{
if ( $nick == $me ) /msg $chan Good Morning Room
else /msg $chan $nick Welcome To This Rom
}
;this is for part a channel of all rooms.
on 1:part:#:{
if ( $nick == $me ) /msg $chan I am loving it
else /msg $chan $nick Thank's for joining with us.
}
;you can do it in your own room. like this...
on 1:part:#mIRC,#Help:{
if ( $nick == $me ) /msg $chan I am loving it...
else /msg $chan $nick Thanks for joining with us
}