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.

Where to add /msg hostserv on

General support and discussion of Eggdrop bots.
Post Reply
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Where to add /msg hostserv on

Post by starpossen »

This might be a very simple question, I tried to search around, but didn't find the solution, the question is:
I have a vhost but how or where do I add this command to my eggdrop:
/msg hostserv on

I use the chanservneed.tcl for identifying with chanserv
if this has been already answered, I apology for posting this.
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

You can add it here (from your .conf file):

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"
}
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Post by starpossen »

Thanks for your reply, so I just put
/msg hostserv on
in that area?
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Code: Select all

puthelp "PRIVMSG hostserv :on"
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Post by starpossen »

Sir_Fz wrote:You can add it here (from your .conf file):

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"
}
like:

Code: Select all

proc evnt:init_server {type} {
  global botnick
  puthelp "PRIVMSG hostserv :on"
  putquick "MODE $botnick +i-ws"
}
?
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Try it and see :wink:
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Post by starpossen »

Hmm.. didnt seem to work.
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Did you .restart your bot after adding the line? If not, then do it. If it still doesn't work then try changing puthelp to putserv or putquick.

Also, do you need to be authenticated with services in order to be allowed to use this command or there's no difference?
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Post by starpossen »

Well, I use chanservneed.tcl for identifying with nickserv, and that works perfectly.
The bot and me has the same hostmask, and also the same identify, but when I use my bot's nick im my normal irc client the vhost works, I grouped the bot's nick with my identify info, maybe im to tired or missing something, cause I tried both your suggestions, but it still doesnt work.
Post Reply