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.

New to EggDrop

Old posts that have not been replied to for several years.
Locked
S
Stium

New to EggDrop

Post by Stium »

Hey guys,

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.

Thank you

Stium
S
Stium

Post by Stium »

I've got the auth thing figured out.

I'm now writing a script for checking my website for updates.

Help is needed. Reply please!
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

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 :wink: 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:

Code: Select all

set init-server {
  putserv "MODE $mybotnick +i-swx
  putserv "PRIVMSG NickServ : identify $mypassword $mybotnick"
}
Hope this helps :wink:
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Re:New to EggDrop

Post by Alchera »

You'll find the following bind in eggdrop.conf.

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"
}

Add this before the closing end brace:

Code: Select all

putserv "PRIVMSG NickServ :identify $botnick <password>"

The above format is for DALnet's NickServ where the nick is optional and not used on most other networks. :)
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

I think you have already been helped with the authorizing by now.
For the other 'update' thing you mentioned have a look at this previous thread.

http://forum.egghelp.org/viewtopic.php?t=8268
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Locked