This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Welcome msg

Old posts that have not been replied to for several years.
Locked
D
Dee-Dee

Welcome msg

Post by Dee-Dee »

HI ALL!

I just want to know how do u set the eggdrop welcome msg..no on private, on chanel... but this see only who join the chanel..



tnx


plz tell in english :)

sry for my bad english :)
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

There are types of messages on IRC.

NOTICE and PRIVMSG

NOTICE is defined as a message that can be sent to a channel or a single nickname, and should not be replied too.

PRIVMSG is the normal message, which can be sent to a channel or a single nickname.

You state you want a message to be sent to a user that joins the channel, but it should not be sent to the user in a private message. You also state it should only be seen by the joining user, and not the rest of the channel.

These two requirments are contridictory, and are just not possible.

Some IRC clients will display a NOTICE, sent to a nickname, in all channel windows that the sender and recipient are in. Some will display the message in the currently active window. Some will display it in a seperate window.

Such, it is client dependant. This is not accounting for scripts, which could do somthing different alltogether.
D
Dee-Dee

Post by Dee-Dee »

if u know the Q or L on quakenet... They say notice msg to people who join.. on chanel...but this see only who joinet...how do i set this on my eggdrop?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

A notice, no problem

Code: Select all

bind join - "*" join:notice
proc join:notice {nick uh hand chan} {
  putserv "NOTICE $nick :PUT YOUR MESSAGE HERE"
}
However, my previous post still applies.

When Q or L sends you a NOTICE, it displays it in the channel window. This is an effect of your IRC client, not the server, Q, L or the notice command.

It could be a script, or the client displaying it in that window.

in other words, do not trust this script to do what you want.
D
Dee-Dee

Post by Dee-Dee »

tnx :)
Locked