mIRC Homepage
Hi, I would like to have a script where when a person joins the channel they get /msg'ed with blahblah

I've had a google around (as you do) and found this :

(err i've actually lost it, but it was something like..)

On *:JOIN:#channel.name: {
msg $nick (your message)

it didn't seem to work - I use the Quakenet network by the way

Any ideas?

Thanks
type /help on join

the very first example is what you want.
I use this to auto-greet people entering the #chatzone channel:

on 1:JOIN:#chatzone: {
.notice $nick Hi $nick , welcome!
}


for for more channels, juz copy & paste the whole command, and change the channel name.

gudluck
"Just copy and paste"-- no.

If you read the help you'd see you can specify multiple channels together if they're comma separated:

on *:JOIN:#chan1,#chan2,...:/msg $nick hi

There's no reason to copy the entire event.
No recipient given (PRIVMSG)
8,2.: [05:11]8,2:.11,12niouuk8,2.:0,1


doesn't seem to work

}
ON *:JOIN:#loltest,#loltest2: {
//msg $nick messagehere
}

Could someone give me working code please? frown

i've tried it myself, I get a blank message in some weird colours
Code:
on *:join:#loltest,#loltest2:{
msg $nick message here
}

Looks like you have a script that's messing with your /msg command

The code you pasted is fine.
© mIRC Discussion Forums