Anope, Epona services etc have that function when enabled. All users receive an annoying message of the day (of some sort). There are also notices that only IRCops see.
Add [SOLVED] to the thread title if your issue has been. Search | FAQ | RTM
Something like this should work. I had something similar on my IRCD which was UnrealIRCD for checking open proxy ports. Your IRCD will most likley work slightly different. The message opers recive when a client connects contains all the information about that user including the nick they connect with. If this script doesnt work post back the client connecting message so I can see which element in the list needs to be caught to find the nick.
bind raw - NOTICE connect_msg
set gCatchNotice "Client connecting"
proc connect_msg {from keyword arg} {
global gCatchNotice
if {([string match "*$gCatchNotice*" $arg])} {
set nick [lindex [split $arg] 9]
putquick "PRIVMSG $nick :welcome to my irc network blah blah blah"
}
}
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
then see what $arg 5 contains. change the number till it contains the nick of the user connecting if that is what the problem is. also does your bot see server notices? you may need to set its usermode to see them. if it can see them it should be displayed on the partyline.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
hey man, thanks.. it works with
set nick [lindex [split $arg] 6]
I want also to ask you if there is a script, which grabs /stats p report of the hybrid-ircd, and say it to the connecting user.. i mean i want script, which will say to the user: "The active ircops at the moment are: nick1, nick2, nick3"... can you tell me if there is something like that? I`ve searched egghelp.org but there was nothing...
?