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.

vhost

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

vhost

Post by Dreaman »

Hi,
does someone know how to point out me as to insert a vhost to the bot?
the manual command for normal user would be /vhost nick password, would like to insert him/it in my eggdrop in way automatically does him/it when rejoin on the server.
Thanks
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

See the init-server setting.
D
Dreaman

Post by Dreaman »

ok perfectly work thanks :wink:
R
RoZWeLLiTe

Post by RoZWeLLiTe »

I am having the same issue. Can someone please post how I use the init-server command to perform /vhost user pass

Thanks
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

hmmm

Post by De Kus »

i would suggest

Code: Select all

putserv "VHOST user pass"
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Code: Select all

bind evnt - init-server do:vhost

proc do:vhost init-server {
  putserv "VHOST user pass"
}
Once the game is over, the king and the pawn go back in the same box.
User avatar
Yourname
Master
Posts: 358
Joined: Mon Sep 24, 2001 8:00 pm
Location: Toronto

Post by Yourname »

OR

Code: Select all

set init-server {
putserv "MODE $botnick +i"
putserv "nickserv identify password"
putserv "vhost username password"
}
...set init-server is within the conf. Just modify it.
Dormant egghead.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

The init-server setting is limited in length.

I don't have access to my docs here, and the connection is so bad, I aint even gonna try.

The EVNT bind provides an event of the same type, and will allow unlimited length (upto memory size) scripts to be used.
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Heh, I won :P :lol:
Once the game is over, the king and the pawn go back in the same box.
Locked