I'm new to the eggdrop world. I've always used mIRC and mIRC scripts for my bot needs but got sick of running the bot on my home computers so I moved it to my dedicated server which runs linux so I decided to try out the eggdrop bot everyone tells me so much about.
Alright first set of questions.
How to do I get my bot to auth on gamesurge?
I figured out how to install and setup scripts but how do I make auto repliers like for @updates so it would check my site for updates and such.
I dunno, I'm sure I'm going to have a ton of questions but I'll start with just getting it authed on gamesurge.
For a new eggdrop owner, the finest resource you could possibly find is located within every eggdrop's ~/doc directory... detailed text files on darn near every aspect of eggdropology.
As with most postings from eggdrop n00bies, this one also could have been solved simply by reading the links provided on the homepage, such as Setting Up Your Eggdrop, Using Your Eggdrop, and Enhancing Your Eggdrop. Chew on some of that to get you started. One point to make about "auth"ing to your nickserv. Use the init-server setting to set your bot's initial contact and modes.... For example:
# 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"
}