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.

Authorizing a bot

Old posts that have not been replied to for several years.
Locked
o
oldmandtr

Authorizing a bot

Post by oldmandtr »

Can anyone tell me how to authorize an eggdrop automatically when it joins a channel on Starlin-irc. The use CStar as thier chanserv
User avatar
KrzychuG
Master
Posts: 306
Joined: Sat Aug 16, 2003 2:51 pm
Location: Torun, Poland
Contact:

Post by KrzychuG »

Search forum for init-server. Don't be lazy ;)
Que?
C
CtrlAltDel
Halfop
Posts: 49
Joined: Wed Jun 02, 2004 7:58 am

Post by CtrlAltDel »

KrzychuG wrote:Search forum for init-server. Don't be lazy ;)
That's easy to say if you know that init-server is what you're looking for .. not everyone does.
User avatar
KrzychuG
Master
Posts: 306
Joined: Sat Aug 16, 2003 2:51 pm
Location: Torun, Poland
Contact:

Post by KrzychuG »

You can find it in config file and in many other doc files in eggdrop package.

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"
}
Que?
m
minieye

Post by minieye »

I just don't understand where you put this... my config file looks a little different. i did it 5 years ago heh.

Code: Select all

set init-server {
  putserv "MODE $botnick +i-ws"
  putserv "PRIVMSG authserv@services.gamesnet.net :identify username pass"
}
all I added was the line with PRIVMSG in it, but it's not working. should I just take out all of that and put in what you said?
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

I suggest you download the latest eggdrop tarball and very carefully read/edit eggdrop.conf. Since 1999, the contents/options available have changed a lot.

I check my bot configuration file against all new releases to ensure it's up to date.

Read the step by step guide for Setting up an Eggdrop also.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
m
minieye

Post by minieye »

oof, my version is old ;p
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

I suggest you update to the latest version eggdrop.

***Edited***
Try putting this code after the server module is loaded in your existing configuration 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"
  putquick "PRIVMSG authserv@services.gamesnet.net :identify username pass"
}
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Locked