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.

A nickserv.tcl delay question

Support & discussion of released scripts, and announcements of new releases.
Post Reply
z
zaxxon202
Voice
Posts: 15
Joined: Fri Nov 23, 2007 4:41 pm

A nickserv.tcl delay question

Post by zaxxon202 »

Im on an irc network with hostserv. I use nickserv.tcl. And it works great. Only thing is, when the bot joines the channel its still usint its original IP. By the time you /whois the bot, the vhost is already active.

So my question is, is there a way to either have the script kick in before it joins the channel, or somway to have the egg delay joining the channel for a few seconds?

Thanks
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

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
  putquick "MODE $botnick +i-ws"
}
Place the appropriate command after the MODE line.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Post Reply