is this possible?

Old posts that have not been replied to for several years.
Locked
c
cab

Post by cab »

How can I make my eggdrop oper when it connects to my server?
D
Dee^^_^^

Post by Dee^^_^^ »

does anyone ever read or look for tcl scripts on their own anymore gezzzzzzzzzz
E
EdGei

Post by EdGei »

What you can do, is find yourself a .tcl script on the TCL scripts page that does what you want it to do.

Also if your server has channel services, you can set your bots nick to be an op in your room with the channel service.

Hope this helps

J. Edge
c
cab

Post by cab »

Dee, I looked for an hour and came up with nothing. I went through at least 60 sites.

thanks
W
Wcc
Master
Posts: 278
Joined: Sun Oct 28, 2001 8:00 pm
Location: USA
Contact:

Post by Wcc »

On 2002-03-10 14:25, cab wrote:
How can I make my eggdrop oper when it connects to my server?

Code: Select all

bind evnt - init-server evnt:oper

proc evnt:oper {type} {
  putserv "OPER <nick> <operpass>"
}
Locked