you have 127.0.0.16667 as a server, did u mean 127.0.0.1:6667 ?Tryng Server 127.0.0.16667:6667
thats causing your bot to disconnect, check the following settings in eggdrop.conf file:192.168.1.100 has me i-lined (jumping)
Code: Select all
bind notc - "*please choose a different nick*" the:name:of:my:ns:id:proc
Thanks never ran across this with my own, and was wondering about it. wont have to guess at it anymore too lolnml375 wrote:The i-line jump is actually related to the check-mode-r setting, which tells whether eggdrop should try to get a non-restricted connection (aka I-line), or be satisfied with a restricted one (aka +r or i-line).
These are in no way related to the channel I modes.
But where I must put it into the identify.tcl file?!?!?speechles wrote:set init-server { putserv "ns identify <password_here>" }
nml375 already said this awhile ago, some use the non-standard command "ns". Your also using this non-standard command in your question. So why not simply use the command?
Nowhere, that script is bloated, remove it. Just read the above reply by me again, and put these into your eggdrop.conf where they belong. The key to this is that you understand common sense. Do you?deejayb wrote:But where I must put it into the identify.tcl file?!?!?speechles wrote:set init-server { putserv "ns identify <password_here>" }
nml375 already said this awhile ago, some use the non-standard command "ns". Your also using this non-standard command in your question. So why not simply use the command?
Tnx so much!!!!!!
Code: Select all
# This is a Tcl script to be run immediately after connecting to a server.
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
adduser services *!*services@test.irc
chattr services +f
putquick "MODE $botnick +i-ws"
putserv "ns identify montagna"
}
Why? msg is an internal mIRC alias. You can tell by the / preceeding the command. Which in turn calls the proper "privmsg $target". Which in this case will actually be converted into "PRIVMSG NS :identify <password>". Now you have already said this wouldn't work and the proper way to do it was /ns identify password.deejayb wrote: putserv "/msg ns identify montagna" (I've change this)
Code: Select all
putserv "ns identify montagna"
Code: Select all
utimer 8 [list putserv "ns identify montagna"]
utimer 9 [list putserv "privmsg chanserv :op #mychan"]