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.

bind evnt init-server problem

General support and discussion of Eggdrop bots.
Post Reply
S
Stoebi
Voice
Posts: 5
Joined: Mon Jan 22, 2007 6:22 am

bind evnt init-server problem

Post by Stoebi »

Hi,

during startup with -n option i get this error:
Tcl error [evnt:init_server]: invalid command name "evnt:init_server"

How can i solve this problem, please?


Regards, Stoebi
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Edit a new eggdrop.conf file and load your bot.
S
Stoebi
Voice
Posts: 5
Joined: Mon Jan 22, 2007 6:22 am

Post by Stoebi »

Hello,

thx, but I've edited this line:
bind evnt - init-server evnt:init_server

to:
bind evnt -|- init-server evnt:init_server



Regards, Stoebi
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

And by that you try to accomplish what?
The error-message makes it pretty clear there is no command named evnt:init_server. Changing the flags for the binding will not solve that.
As Sir_Fz said, get a clean eggdrop.conf and start over (otherwize, you'll have to either create your own evnt:init_server proc, or completely remove the binding).
NML_375
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

maybe you need something like this???

Code: Select all

bind evnt - init-server evnt:init_server 
proc evnt:init_server {type} { 
  putquick "MODE $::botnick +i-ws" 
}
Post Reply